is it possible to set the printable margin? SOmething like the Page Setup in microsoft word? So that when I print the "invoice", it would occupy almost the whole of A4 paper.
Printable View
is it possible to set the printable margin? SOmething like the Page Setup in microsoft word? So that when I print the "invoice", it would occupy almost the whole of A4 paper.
The printable margins of a page will have to be handled by your program and the hardware limitations of your printer.
Setting CurrentX = 0, then issuing a print command to your printer will cause the printer to print at the left most edge possible for the device. Setting CurentY = 0 will print at the topmost edge allowable by the hardware.
Printer.CurrentX = 0
Printer.CurrentY = 0
Printer.print "Hello There"
Will print in the upper leftmost position allowed by the printer hardware.
John G