No Problem, The Printer acts almost just like a Picturebox, First you have to Start a New Document.
Code:
Printer.StartDoc
Then just use the Printer.CurrentX and Printer.CurrentY Properties to position the Cursor on the Printer and use
Code:
Printer.Print strMyString
to put some text on it, this puts it all on one line though, you need to Split it up to fit it on the page. If you Need to start a new Page use
Code:
Printer.NewPage
then use
Code:
Printer.EndDoc
to print it.