puppydogbuddy,
"I have heard that MS Access 2007 natively supports pdf."
Yeah, I heard that too. (then I heard that MS and Adobe could not reach an agreement on "something")
When I installed 2007 at work (sp1), you had to download the PDF creation tool "add-in".
http://www.microsoft.com/d
So it might not be what you would call "native support".
(But who knows, it may very well be included in a future Service Pack)
;-)
Jeff
Main Topics
Browse All Topics





by: puppydogbuddyPosted on 2008-07-25 at 22:40:17ID: 22093852
see my accepted answer at this link: e.com/Micr osoft/Deve lopment/ MS _Access/Ac cess_Codin g-Macros/Q _23480129. html
http://www.experts-exchang
I have heard that MS Access 2007 natively supports pdf. If that is the case, all you need to do is launch the Access report in preview mode (with your filters applied) and store the report name in variable, for example strAccessRptName.
Then, put the following code behind a button.
Private Sub YourButton_Click()
DoCmd.OutputTo acOutputReport, strAccessRptName, acFormatPDF, "c:\PDF Reports\" & strAccessRptName & ".pdf", False
End Sub