Hi all!

Hoping that someone might be able to help me.... I am trying to merge PDFs in BlueBeam Revu through VBA coding.

I have to use BlueBeam Revu as that is the PDF editing software my company uses. I have an available reference to "RevuLauncher 1.0 Type Library"

Here is an example code when using acrobat, hoping to modify it to allow revu to complete the merging

Sub Combine_PDFs()

Dim strPDFs(0 To 6) As String
Dim bSuccess As Boolean
strPDFs(0) = "C:\Users\Ryan\Desktop\Page1.pdf"
strPDFs(1) = "C:\Users\Ryan\Desktop\Page2.pdf"
strPDFs(2) = "C:\Users\Ryan\Desktop\Page3.pdf"
strPDFs(3) = "C:\Users\Ryan\Desktop\Page4.pdf"
strPDFs(4) = "C:\Users\Ryan\Desktop\Page5.pdf"
strPDFs(5) = "C:\Users\Ryan\Desktop\Page6.pdf"
strPDFs(6) = "C:\Users\Ryan\Desktop\Page7.pdf"

bSuccess = MergePDFs(strPDFs, "C:\Users\Ryan\Desktop\Combined.pdf")

If bSuccess = False Then MsgBox "Failed to combine all PDFs", vbCritical, "Failed to Merge PDFs"

End Sub