I have code I am using to merge 2 different PDF's, if "gPDDoc1" has 1 page and "GpDDoc2" has 20 pages. I am not familiar with the page ordering of my resulting merged PDF:
mergefile = gPDDoc1.InsertPages(1, gPDDoc2, 0, 1, 0)
The full code I am using is here:
Sub Merge()
Dim gPDDoc1 As AcroPDDoc...