Join in a single PDF a set of form filled PDF

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Join in a single PDF a set of form filled PDF

    I'm trying to join a set of form filled PDF without success.

    In the first step of the process I create a set of PDF filling a PDF form with customer address. I use the AcroForm Automation Objects.

    At the end of this step I need to create a single PDF to insert some information to print it for a mailing system. I couldn't have more than one file !

    I join files calling my plug-in that use PDDocInsertPages.

    The result is a file with the right number of pages but with ALL fields with the value of the first PDF file ! :(

    What's wrong ?
    Thank you for your help!
    Domenico Barile
    d.barile@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Is it possible to join two single pages in apdf into one double page spread?
      Is it possible to take two single pages from separate pdf documents and combine them as one double page spread? If it is possible could someone...
    2. Can Filled In Form Fields Be Printed?
      We have a client that would like to use Acrobat to type in a form field (like typing a letter) then be able to print it out. I thought this was...
    3. AA8Pro - enabling Reader user to fill and save filled form?
      On this page: <http://www.adobe.com/products/acrobat/matrix.html> It is clearly stated that Acrobat 8 Pro user can "Enable Adobe Reader users...
    4. Creating a PDF file with a set of PDF Form filled
      I'm trying to join a set of PDF Form filled (in a former step) but at the end I've got a file with all the pages with the same value of fields !...
    5. Email filled-in form?
      I am new to Acrobat and created a fill-in form in Acrobat 6. All I would like to happen is to send someone this form, have them fill it out and...
  3. #2

    Default Re: Join in a single PDF a set of form filled PDF



    What's wrong ?




    All fields with the same name gets the same value.
    Bernd Alheit Guest

  4. #3

    Default Re: Join in a single PDF a set of form filled PDF

    Hi Bernd, thanks !

    It's right but I'm using the same "master" to create the set of single PDF.
    How can I "rename" the fields ?
    d.barile@adobeforums.com Guest

  5. #4

    Default Re: Join in a single PDF a set of form filled PDF

    you need to create a template in your base document and use spawnPageFromTemplate to insert a new page. Acrobat wil now automatic rename formfields "P1.name" , "P2.name" etc.
    Hallo@adobeforums.com Guest

  6. #5

    Default Re: Join in a single PDF a set of form filled PDF

    Thank you, but I couldn't use Javascript. Do you know another way to spawn a page from a template ?
    I'm searching all the SDK documentation without success !
    d.barile@adobeforums.com Guest

  7. #6

    Default Re: Join in a single PDF a set of form filled PDF

    The problem is to sort the PDF. I can't know the field values so I can't order them to create an unique file, and sometimes, I need to put an attachment to the files.
    So I need I method to rename fields when I fill the form before saving the file to let me assemble all PDFs at the end of the process.
    d.barile@adobeforums.com Guest

  8. #7

    Default Re: Join in a single PDF a set of form filled PDF

    Sorry can't help.
    Hallo@adobeforums.com Guest

  9. #8

    Default Re: Join in a single PDF a set of form filled PDF

    You could use the JavaScript function to flatten the fields before
    merging the pages, perhaps. What do you mean by " I couldn't use
    Javascript" - you don't know how, or it doesn't do what you want, or
    it isn't technically possible for you?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  10. #9

    Default Re: Join in a single PDF a set of form filled PDF

    Hi Aandi,
    I'm using MS Visual Studio 7.0 to develop my application.
    I've never created Javascript with PDF so it's difficult for me to do this.

    If I reprint (using distiller) I have the result I need so probably the solution is to use the flatten field function.
    In the SDK I found only PDDocFlattenOC (or PDPageFlattenOC) but probably I don't found the right parameters values.

    What do you think ? Could you give me some other advices ?
    Thanks :)
    d.barile@adobeforums.com Guest

  11. #10

    Default Re: Join in a single PDF a set of form filled PDF

    >I'm using MS Visual Studio 7.0 to develop my application.
    >I've never created Javascript with PDF so it's difficult for me to do this.
    Which interface to the SDK are you using?
    What language in the Visual Studio sute are you using?
    >
    >If I reprint (using distiller) I have the result I need so probably the solution is to use the flatten field function.
    >In the SDK I found only PDDocFlattenOC (or PDPageFlattenOC) but probably I don't found the right parameters values.
    These are for plug-ins. Are you writing a plug-in?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  12. #11

    Default Re: Join in a single PDF a set of form filled PDF



    Which interface to the SDK are you using? I'm using both IAC then plug-in.
    I use IAC to open, save and print PDF quickly from my application. I wrote
    also a plug in to write into PDF, to put OMR code, etc.






    What language in the Visual Studio sute are you using? I'm coding in C++.






    These are for plug-ins. Are you writing a plug-in? Yes, I'm writing a
    plug-in.

    d.barile@adobeforums.com Guest

  13. #12

    Default Re: Join in a single PDF a set of form filled PDF

    Ok, an external application that interfaces to JavaScript must use
    Visual Basic, but you also have AFExecuteThisJavaScript for plug-ins
    (I think that's the name).

    PDDocFlattenOC is for flattening optional content (OC), also known as
    layers; it has no connection to form fields.

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  14. #13

    Default Re: Join in a single PDF a set of form filled PDF

    Hi guys, I solved my problem using suggestion of all of us: I execute a Javscript to flatten pages using AFExecuteThisScript.
    Thank you !
    ;)
    d.barile@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139