Ned some help with vb's Printer.print...
1) How do you pint different colors?
2) How can you include different size text on the same sheet?
3) How do you include a picture (logo.bmp)?
Any help on all, or one, is appreciated.
Printable View
Ned some help with vb's Printer.print...
1) How do you pint different colors?
2) How can you include different size text on the same sheet?
3) How do you include a picture (logo.bmp)?
Any help on all, or one, is appreciated.
Q2:
Use the font property:
___________________Code:printers(n).print "xxxx"
printers(n).font.bold = true
printers(n).print "yyyy"
Q3:
Use the PaintPicture Method:
Code:printers(n).PaintPicture LoadPicture(path), X start coordnate, y start coordnate, , , , , , , &H00330008