PDA

Click to See Complete Forum and Search --> : Help with printing in customize position


daimous
Jul 15th, 2007, 08:15 PM
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.

jmcilhinney
Jul 16th, 2007, 02:12 AM
.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.

daimous
Jul 16th, 2007, 07:23 PM
Thanks a lot Jm!