-
Printed output
What is the best way to go about sending data to the printer in a particular format? For example, I want to duplicate and existing form that I use in the office. Is there a way to create a template, and read the values of textboxes into the template? I'm not looking for code, but just a direction to go with this thought.
-
Yes You can either inherit a PrinterDocument object and override the Printing method or just use an instance of a PrinterDocument. Essentially you draw what you want directly to the printer. I'd suggest searching for examples posted previously in this forum.