Reputation: 1655
My father is a used car salesman and I am going to write him an applicaion that he can type in all of the information regarding the car being sold, buyer and himself to save him some time.
The only real challenge is that there are three static documents that I need to print out and on those documents I need to place information such as Buyer Name, Car Make/Model/Year, etc. How would someone recommend I do this? Ideally I would want to scan the static (blank) documents, the somehow put text boxes around the empty spots on the page in which a piece of information goes (like buyer's name) and then print it.
Does anyone have a decent methdology for this? Is there a way to create maybe a PDF document with text boxes that are blank, and then I open the document inserting informationg into the text boxes programmatically?
I prefer to write the solution in C#, I'm going to gather the data via C# but the only thing I'm having trouble with is the printing aspect.
Thanks,
Upvotes: 0
Views: 186
Reputation: 44971
I would recommend that you use the builtin Crystal Reports for Visual Studio since this will allow you to design the forms (as reports) and merge them with data.
There are a lot of resource available for getting started in this including:
Getting Started (How Do I in Crystal Reports for Visual Studio)
and
Generate a Report using Crystal Reports in Visual Studio 2010
Upvotes: 1