Aug 5, 2001 #1 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
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
Aug 5, 2001 #2 HebieBug Programmer Jan 8, 2001 354 JP printer.font.size = 10 Printer.print tab(5);text1.text;tab(10); printer.font.size = 12 Printer.print text2.text Upvote 0 Downvote
printer.font.size = 10 Printer.print tab(5);text1.text;tab(10); printer.font.size = 12 Printer.print text2.text