Hi
We have a set of PDF files that need to be combined based on certain rules. Following is a sample code.
PDFdocument lpdf_doc
lpdf_doc = create PDFdocument
//Import the PDF content
lpdf_doc.importpdf("D:\import\masterdocument.pdf")
lpdf_doc.importpdf("D:\import\testdocument.pdf")
lpdf_doc.save( "D:\save\importcomplete.pdf")
Normally it works well.
However we also have PDF documents with fillable fields (PDF templates). Say if the masterdocument.pdf contains this fillable form, the masterdocument becomes empty. It also make the (final save) entire document empty.
I am using PowerBuilder 2022 Build 1892.
Any work arounds?
Your help is much appreciated.