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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

My Printer is too Slow

Status
Not open for further replies.

grego

Programmer
May 12, 2002
2
ZA
I'm using VFP 6.0 on my report, I'm using a Epson FX-870, but the the report is too slow, but when I print from DOS the printer is realy much faster than Windows. How Could I Hurry up a little the printer???
 
Hi, Grego!

Windows printer driver always prints reports as graphics, so it is quite slow on any matrix printer. DOS prints in text mode, so printer prints no graphics, just text. Text printing much more quick for matrix printers.

To use DOS way in Windows, do not use 'report form ... to printer' command, use instead following:

* write report into text file instead of printing
report form ... to file MyFile.TXT ASCII
* print content of produced text file
set printer on
Copy file 'MyFile.TXT' to 'LPT1:'
set printer off
set printer to
* delete temporary text file
ERASE ('MyFile.TXT')


Vlad Grynchyshyn
vgryn@softserve.lviv.ua
The professional level of programmer could be determined by level of stupidity of his/her bugs
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top