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???
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')
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.