I am using VB6 and Access2000. I am making text file by using FSO for dot matrix printing I want to Bold/Italic some text and like to Justify the text.
Hi,
You'll have to use the VB Printer object to print it, you can't do a huge amount of formting with it but you can open the file and between the file read lines add Printer.FontBold = True
Printer.Print MyTextLine
Printer.FontBold = False
You can also use TAB() as well eg.
Printer.Print TAB(5);MyText1;Tab(30);MyText2
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.