I need to print some text to the printer, and I can't figure out how. It just has to be straight text. No graphics, forms, etc... What's the easiest way to do that?
Printable View
I need to print some text to the printer, and I can't figure out how. It just has to be straight text. No graphics, forms, etc... What's the easiest way to do that?
This example sends the text "Hello World!" to the printer
Code:Printer.Print "Hello World!" 'print the text
Printer.EndDoc 'say that the end is reached
Printer.Print "Help Please"
Printer.Print ""
Printer.Print "The End"
Printer.EndDoc