Merging Pdf docs using access 2007 vba

ianclegg

Registered User.
Local time
Today, 19:01
Joined
Jul 14, 2001
Messages
58
Hi

Has anyone any simple code that merges multiple pdf documents that they are willing to share. I don't seem to be able to find anything that works so far.

Thanks in anticipation.

Regards

Ian Clegg
 
Install the server version of pdf toolkit.

Then use the Shell function to run it via command line.
 
Thanks Galaxiom

I followed you suggestion, my final code is posted below.

Set objShell = CreateObject("WScript.Shell")
strcommand = "PDFTK c:\doc1.pdf c:\doc2.pdf c:\doc3.pdf cat output OutputF1.pdf"
objShell.Run strcommand


Thanks to all who viewed, maybe this will help you.

Regards
 

Users who are viewing this thread

Back
Top Bottom