hi guys...Help please..I have 3 Textboxes, CustomerId, Firstname & Lastname, and an Official Receipt. What I want is, is to fill-out the blanks from my Official Receipt with those value from the textboxes.
Printable View
hi guys...Help please..I have 3 Textboxes, CustomerId, Firstname & Lastname, and an Official Receipt. What I want is, is to fill-out the blanks from my Official Receipt with those value from the textboxes.
.NET printing is done using GDI+. Just like drawing text on a form or control, you draw text on a printed page with the Graphics.DrawString method. You specify where to draw the text with parameters. See the help documentation for the PrintDocument for more information.
Thanks a lot Jm!