http://www.vb-helper.com/HowTo/rotprint.zip

	Purpose
Print rotated text on the printer.

	Method
Use CreateFont to create the rotated font. Use SelectObject to select
the font into a hidden PictureBox object and draw the text. Then use
PaintPicture to copy the results to the Printer object. Clean up by
reselecting the PictureBox's original font and destroying the rotated
font with Destroy object.

Because printers usually have much higher resolution than monitors, the
result may be grainy. You can reduce graininess by drawing the text at
larger than normal scale and then shrinking it to normal size with
PaintPicture.

For lots more information on rotated text and other graphics topics, see
the book Visual Basic Graphics Programming. For more on the book, go to
http://www.vb-helper.com/vbgp.htm.

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
