logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Post a reply
From:
Message:

Maximum number of characters in each post is: 32767
Bold Italic Underline   Highlight Quote Choose Language for Syntax Highlighting Insert Image Insert an existing Attachment or upload a new File... Create Link   Unordered List Ordered List   Left Justify Center Justify Right Justify   Outdent Indent   More BBCode Tags
Font Color Font Size
Security Image:
Enter The Letters From The Security Image:
  Preview Post Cancel

Last 10 Posts (In reverse order)
Paul Rayman Posted: Friday, April 15, 2016 4:05:24 PM(UTC)
 
Guest Posted: Friday, April 15, 2016 3:24:25 PM(UTC)
 
I have figured out the printing issue Needed to add FPDF_ANNOT to the Viewer Render Flags.
Guest Posted: Friday, April 15, 2016 10:50:57 AM(UTC)
 
I have recently started looking into this and have some questions.

I can load a pdf form document into the viewer and enter information into the fields.

Using the print button off the main toolbar the pdfViewer only prints the base document not the filled in form.

I also have tried saving the filled in form by iterating through the page collection and calling FlattenPage and ended up with only the base document with form fields intact.

I am loading the documents with:
Code:
PdfViewer1.LoadDocument("pdfdocument.pdf")


And attempting the flattenPage with:
Code:

        Dim result As Enums.FlattenResults
        For Each page As Net.PdfPage In PdfViewer1.Document.Pages
            result = page.FlattenPage(Enums.FlattenFlags.NormalDisplay)

        Next