Printing text at a particular position on pre printed paper form using C#

c#, printing

Solution

Here is something to get you started....... http://msdn.microsoft.com/en-us/library/aa287530(v=vs.71).aspx

Using that tutorial, I would suggest you print roughly at the four corners of a page, that way you know the printing coordinate system.

Using that, and a good ol' ruler, you can figure out where the fields on your paper form are, and translate them to x-y coordinates on the code.

Problem

I need to print as in printing paper texts at a particular position of the print paper. The reason is that the printing is done on already printed form with fields such as first and last names. So when I get the name of the person and it should print within that allocated space in paper form. Wondering if there are any exisiting libraries that will allow me to print at a particular position using a coordinate system like X and Y coordinate.

Original source