-
Hi all
my current printing code is this
Code:
Printer.CurrentX = 11000
Printer.CurrentY = 2000
Printer.Print Text8.Text
My question is how can i position my printing so that current X can go more then 11000? , i tried to set current x to 11500 but nothing is printed out
Any help is greatly appreciated
-
<?>
That is happening because at(11,000)you are at the right side of the page.
It you set it to 100 you are at the left side of the page
not the right.
If you just need more room then set it to landscape.
Code:
'setting the printer object to landscape or portrait
Private Sub Command1_Click()
'These constants are listed in the Visual Basic
'(VB)object library in theObject Browser.
'must be set before any print statements
'landscape
Printer.Orientation = vbPRORLandscape
'portrait
'Printer.Orientation = vbPRORPortrait
Printer.Print "Would you look at this!"
Printer.EndDoc
End Sub
-
Hi HeSaidJoe
I tried the code and it really helps THANKS a lot