Hello 
In Access I make calibration reports which I digitally sign with Adobe and that part works perfect but I have run into a small problem, now I need to merge a lot of different calibration reports into one pdf file and I can't do that as long as the reports is signed.
My workaround is opening each Adobe pdf file and print them to Adobe PDF manually to keep the signature image and then merge all the Adobe pdf files but I want to automate this part and I am stuck on print to Adobe PDF.
I am able to set the default printer to Adobe PDF but I need some sort of code that will print pdf files with Adobe PDF to another folder without any input from me.
Any help is appreciated

In Access I make calibration reports which I digitally sign with Adobe and that part works perfect but I have run into a small problem, now I need to merge a lot of different calibration reports into one pdf file and I can't do that as long as the reports is signed.
My workaround is opening each Adobe pdf file and print them to Adobe PDF manually to keep the signature image and then merge all the Adobe pdf files but I want to automate this part and I am stuck on print to Adobe PDF.
I am able to set the default printer to Adobe PDF but I need some sort of code that will print pdf files with Adobe PDF to another folder without any input from me.
Code:
'Copy Selected pdfs to temp folder
Call GetPDFsTemp(Me)
'Set printer to Adobe PDF
Set Application.Printer = Application.Printers("Adobe PDF")
'Missing code to print pdf files in temp folder to Adobe PDF without any input from user
'Set the Default Printer back to default
Set Application.Printer = Nothing
'Merge pdf files in temp folder
Call MergePDF(Me)
Any help is appreciated

Last edited: