If you are using the printer object in vb. that is:
Printer.Print ........
....
....
Printer.EndDoc
then there should be no problem. try installing a generic text(make it default) instead of the actual printer driver. and you'll find your printer printing the old fashion way. (dont forget to set the font in the printer console ok? make it draft)
but if you're using a report writer like crystal report. we have the same problem and still seeking for an answer.
:)
Main Topics
Browse All Topics





by: eeshahidtPosted on 2004-10-11 at 12:35:12ID: 12280042
Is the program which is insisting on you choosing the best quality, you own vb app or someone else's. If someone else's, then he has probably written a poor app. If it is your vb app, you could try setting reference to 'Microsoft Common Dialog' controls and call the ShowPrinter function. Alternatively, you could just say...
Printer.PrintQuality = vbPRPQDraft or
Printer.PrintQuality = vbPRPQHigh or
Printer.PrintQuality = vbPRPQLow, etc...
Hope this answers your question