Posted by a ceTe Software moderator
Hello Adam,
Yes, you can get the page count of the input PDF document without any problem using our DynamicPDF Merger for COM/ActiveX product. You will need to create PdfDocument object by loading input PDF. Then you can retrieve the page count using pageCount property. Below is the code sample for it.
Dim pdf As New DynamicPDF.PdfDocument
pdf.LoadPdf "C:\Temp\DocumentA.pdf", ""
Dim pageCount As Integer
pageCount = pdf.pageCount
Thanks,
ceTe Software Support Team.