AngelSpeaks
Active member
- Local time
- Today, 17:32
- Joined
- Oct 21, 2021
- Messages
- 615
I did use Access 2013, just installed Access 2019, on a new computer. My old computer has an old version of Adobe Acrobat Pro, while this computer has Adobe Acrobat Reader (which may be the cause of my problem. Client computer has Acrobat Pro also).
This snippet code is not creating any files (it's in a loop to create a pdf file for each row returned in a query:
I didn't find anything that states a specific version of Acrobat is needed and the VBA References are the same.
Thanks for your help!
This snippet code is not creating any files (it's in a loop to create a pdf file for each row returned in a query:
Code:
Dim filenamePDF As String
filenamePDF = directoryName & "\State " & gstrState & " Job " & Job & " Start Date " & sDate & " - CP Upload.pdf"
With DoCmd
.SetWarnings False
.OutputTo acOutputReport, "rptAffidavit", acFormatPDF, filenamePDF
.SetWarnings True
End With
I didn't find anything that states a specific version of Acrobat is needed and the VBA References are the same.
Thanks for your help!