I multiple textboxes on a form how would i print all of them onto one page?
Code: Printer.Print Text1.text Printer1.Print Text2.text '..... Printer.EndDoc If that don't work: Code: Printer.Print Text1.text & Text2.text '& Text..... Printer.EndDoc
Printer.Print Text1.text Printer1.Print Text2.text '..... Printer.EndDoc
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?
Forum Rules