Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printer Fonts?????

Status
Not open for further replies.

DUF

Technical User
Mar 10, 2001
107
IE
Hi,
I am New to VB6 and I need help with Printing
I have the following code

printer.font.size = 10
Printer.print tab(5);text1.text;tab(10);text2.text;

How do I increase the font size text2 but keep it on the same row as text1

Can anyone help??

Duf
 
printer.font.size = 10
Printer.print tab(5);text1.text;tab(10);
printer.font.size = 12
Printer.print text2.text
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top