Link to home
Start Free TrialLog in
Avatar of Stacey Fontenot
Stacey Fontenot

asked on

Populating PDF using vb.net

I have a pdf form that I need to populate with data using a vb.net application. Does anyone know how I can populate a PDF then save it?
ASKER CERTIFIED SOLUTION
Avatar of Scott McDaniel (EE MVE )
Scott McDaniel (EE MVE )
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
on top of what Scott mentioned with you would need to use the 3rd party library, it would be easier for you to create the fillable PDF forms as the templates, so that to make it easier in the process of "filling up" the PDF forms, instead of programming all the PDF pages from your codes.
Hi Stacey,
Your question says that it is a "pdf form", so I'll assume that it has it fillable fields. If so, my answer at this EE question has my suggestion for you:
Is it possible to programatically fill out a fillable ADOBE PDF form?

The quick summary is that it's a (free) utility called PDFtk Server that allows you to populate a form programmatically from any programming/scripting language that can call a command line executable (if you don't know how to call a command line from your code, a web search for "vb.net command line calls" will give you the answer). I've used this solution in many programs to fill fields in PDF forms and then save the new, filled-in PDF. Regards, Joe