Filbert Level: Guest

|
Re: current Y and current Y locations
the print object starts out with x,y at 0,0.
if you want to print something elsewhere, you have to add the new coordinates to the starting x,y. Like,
New_X = printer.currentX + 500
New_Y = printer.currentY + 500
Printer.Print "I'm printing at 500 twps over and 500 twps down"
Printer.Print "I'm gonna print on the next line"
Printer.EndDoc
and so on...
Also,when you use the VB graphics methods, the Current X and Current Y co-ords start where that methood left you.
I have a routine that shows alot of this stuff if you want it.
|