How to Print Text
Posted on January 5, 2009
1 2 3 4 5 6 7 | 'Miscellaneous - How to Print Text Private Sub Main() Printer.Print "hello" 'Use the EndDoc command if this text is the last thing you want to print on the paper Printer.EndDoc End Sub |
1 2 3 4 5 6 7 | 'Miscellaneous - How to Print Text Private Sub Main() Printer.Print "hello" 'Use the EndDoc command if this text is the last thing you want to print on the paper Printer.EndDoc End Sub |