Printing on a specific region on paper
Good day, so I got this problem with me.
I want to print "received data" from textboxes in vb to print on specific areas on a paper.
Here's a picture of what I want to do:
http://i.imgur.com/RsKkh.jpg
Is this possible on vb6? If yes, please let me know.
Regards,
Jhay
Re: Printing on a specific region on paper
Quote:
Is this possible on vb6? If yes, please let me know.
of course
set the currentX and currentY of the printer object to the appropriate position, before printing each text value
vb Code:
printer.currentx = 99
printer.currentY = 55
printer.print text1
printer.currentx = 60
printer.currentY = 85
printer.print text2
change all values to suit