How can I print a field to a specific page location?
For instance, I have a printed form and I want to print data in those specific/delimited spaces.
I’ve seen some examples, but they do not apply to my need.
http://www.codeproject.com/Articles/10180/How-to-print-text-in-C
https://stackoverflow.com/questions/7703274/how-to-create-page-with-text-in-specific-location
The last one if wasn’t closed I think it’d have the answer.
Any ideas?
Thanks.
If you have a paper form, you can scan it in, and convert it to a PDF form with a program like CutePDF. Next, create the fields you want to be able to fill in (by dragging rectangles), name them, and save the form. iTextSharp is a C# library that lets you fill in the form fields in a programmatic way.
Example:
Links:
iTextSharp
CutePDF