I multiple textboxes on a form
how would i print all of them onto one
page?
Printable View
I multiple textboxes on a form
how would i print all of them onto one
page?
If that don't work:Code:Printer.Print Text1.text
Printer1.Print Text2.text
'.....
Printer.EndDoc
Code:Printer.Print Text1.text & Text2.text '& Text.....
Printer.EndDoc
that printed all of them in one continuous line.
Can i make it so it prints one after the other.
Not in one continueous line?