The code behind a button would look like this:
Dim strFileName As String
Dim strReport As String
strReport = "rpt_Meeting Agenda"
strFileName = Me.LstBox_ChooseDivision & ", " & _
Format(Me.ListBox_Venue.Column(1), "YYYY-MM-DD HH-NN") & ", " & _
Me.ListBox_Venue.Column(2) & ", " & _
Me.ListBox_Venue.Column(3) & ", " & _
Format(Now(), "YYYY-MM-DD HH-NN") & ".pdf"
strFileName = CurrentProject.Path & "\Meeting Agenda Archives" & strFileName
DoCmd.OpenReport strReport, acViewPreview
DoCmd.OutputTo acOutputReport, strReport, acFormatPDF, strFileName, False
DoCmd.Close acReport, strReport
So the above is "air" code, but should be very close to what you require.
Regards
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada