hi,
i want to print a square, and i want it to be a specific size(like 10 sm for example)
how can i print a form(like square) ?
how do i make it to be the same size no matter what printer it is ?
thanx...
Printable View
hi,
i want to print a square, and i want it to be a specific size(like 10 sm for example)
how can i print a form(like square) ?
how do i make it to be the same size no matter what printer it is ?
thanx...
This code will print a 1cm X 1cm square at 1cm from the top of the sheet and 1cm from the left of the sheet. I know there is a more efficient way to draw shapes with the line method but I do not have VB help at home...
Printer.ScaleMode = vbCentimeters
Printer.Line (1, 1)-(1, 2)
Printer.Line (1, 2)-(2, 2)
Printer.Line (2, 2)-(2, 1)
Printer.Line (2, 1)-(1, 1)
Printer.EndDoc
Thanx, it really helped
:)