How can I set the X and Y coördinates when i want to print the text of a richtextbox? When I use the CurrentX and Y of the printer, he don't listen to it. (I use a paper with already some text on it, so i have to change the X and Y)
Like this:

Code:
Printer.CurrentX = 100 'He didn't listen to this
Printer.CurrentY = 3000 'He didn't listen to this
RichTextBox1.SelPrint (Printer.hDC) 'He prints the text on top of the page (X=0, Y=0)
How to set X and Y ?

WP