Merge PDFs using VBA

ianclegg

Registered User.
Local time
Today, 17:55
Joined
Jul 14, 2001
Messages
58
I have a need to merge 6 pdfs using vba, I have checked all the bullzip pdf writer references but can find no info onto how to configure them.

Can anyone help me or suggest an alternative method.

Thanking you in anticipation


Regards

Ian Clegg
 
Not familiar with bullzip. I've done it with Acrobat before, but that requires an external installation, which is kind of blah.

Been a number of years, but I used to "borrow" a DLL from Stephen Lebans for this, which can be plopped into the Access root dir and no need for any other dependencies.

The two dlls are here: http://www.lebans.com/reporttopdf.htm


I couldn't find my copy but here's what Stephen has in his own code:

Code:
Public Declare Function MergePDFDocuments Lib "C:\VisualCsource\Debug\StrStorage.dll" _
    (ByVal PDFMaster As String, _
    ByVal PDFChild As String _
    ) As Boolean

hth
 
I use the Debenu Quick PDF Library ActiveX DLL - debenu dot com

A little homework to set up and integrate but once there, is quick to do many PDF related tasks. It's the workhorse for our document manager system.
 

Users who are viewing this thread

Back
Top Bottom