



If you have any questions, please feel free to ask. Acrobat will automatically open the form in Acrobat and import the data. Now you can import the data back into the PDF by simply double clicking on FDF file. Relative paths in the configuration file possible Then in Acrobat Pro/Standard use the 'Export Data' option in the 'Prepare Form' mode to save the data as an '.fdf' file.Configuration manually adjustable (XML).Setable write protection for individual form fields as well as for the entire document.Filename freely configurable with automatic value.Individual configuration for each form field.Supports text fields, checkboxes, radio buttons, combo boxes, and list boxes.After the fill progress have started, BulkPDF will go through line by line and write the cell value into the form. Then the column names must be manually assigned to the form fields. How does it work?īulkPDF automatically recognizes the values in the selected table. Only a spreadsheet (Microsoft Excel 2007/2010/2013, LibreOffice or OpenOffice Calc) with the desired values is required. What is BulkPDF?īulkPDF is a free and easy to use freeware software (Open Source), which allows to automatically fill an existing PDF form with different values. Maybe my open source tool BulkPDF could do what you want. How to avoid some common mistakes when importing data to Excel All you need to do is to make sure that the rows and columns are recognized properly. Refer here to explore the rich set of Syncfusion Essential PDF features.Īn Online sample link to filling form fields into PDF document. Take a moment to peruse the documentation for working with forms, where you will find other options like filling, removing form fields in PDF document, and adding actions to form fields.

īy executing the program, you will get the PDF document as follows. Nitro Pro ignores all imported field data where the field names do not match the names from the exported file. LoadedForm.ExportData("Export.fdf", DataFormat.Fdf, "AcroForm1")ĭim loadedDocument1 As PdfLoadedDocument = New PdfLoadedDocument("././Input/Form.pdf")ĭim loadedForm1 As PdfLoadedForm = loadedDocument1.Formĭim stream1 As FileStream = New FileStream("Export.fdf", FileMode.Open)Ī complete working sample can be downloaded from ImportExportPDFSample.zip. When you import data into a PDF form, the form must contain fields having the exact same names as the fields from which the data was exported. 'Export the existing PDF document to FDF file Dim loadedDocument As PdfLoadedDocument = New PdfLoadedDocument("././Input/FormFill.pdf")ĭim loadedForm As PdfLoadedForm = loadedDocument.Formĭim memoryStream As MemoryStream = New MemoryStream
