-
Printing(Easy one)
Hi all
I have some question abou printing and i hope you guys there can help me out
Question
1. How do i set up visual basic so that i can print on a landscape format instead of the default one?
2.The printer wont output anything when i execute this code:
print.current Y= 13000
printer.print text1.text
whats wrong with the code???
-
I think the reason its not working is because the co-ordinate 13000 is off the end of the page! Could be wrong though.
try this for landscape mode:
Code:
Printer.Orientation = 2
ok?
-
Thanks for the help wossname :)
-
wossname
Do you mean that if i set the printer orientation to 2 the printer.current Y= 13000 will work?