Hai everybody
I am using the following print command to bill prints in my
dot matrix printer.The application is similar to cash register printing where i do not wnat form feed to happen.Hence i have used the following print statment given by one friend here.It works fine but i wan`t to print some lines say the shop name and the total bill amount in bold and in bigger font than the ordinary lines

dim p as long
p=freefile
Open "LPT1:" for output as p
print #p, "This is line 1"
print #p, "This is lie 2"
close p

Can anyone help it is very urgent.