Link to home
Start Free TrialLog in
Avatar of siki
sikiFlag for Serbia

asked on

FAST Print on dot-matrix...

Can you give me advice for FAST Print on dot-matrix printers. There are some assets I prefer:

1. If could be some ideas to do this with QuickReport.
or 2. Some other easy way, WYSIWYG way.

Thanks in advance
Avatar of alanwhincup
alanwhincup

The only way I can think of is to make sure that you use printer fonts only in your TPrinter.Canvas.Font or quick reports font property. (such as, Courier 10 CPI, Courier 17 CPI, etc.) This will cause the printer to use its built in font and should be quicker.

You could also try just text mode printing:

...
var
  F : TextFile;
...
  AssignFile(F, 'LPT1');
  Rewrite(F);
  Write(F, 'Text' + #13 + #10);
  CloseFile(F);
...
Avatar of kretzschmar
wysiwyg is time expensive,
and you can't make it faster
within the app, because it depends
how fast the dot,atrix-printer can
drive its printerhead

but you can
-reduce the resolution in the printer-device-driver
-buy a better/faster dot-matrix printer
-use the textprinter-device-driver (no wysiwyg)

meikl ;-)
Have you tried a Dos-Print object?
Avatar of siki

ASKER

No, how it works and where I can find that?
Try this page:

http://www.torry.net/printtools.htm

Contains a lot of components for printing at very low cost. Check DotmatrX v.0.1.  I'm sure it will fit your need. Or try TAsciiPrinter v.3.03, at

http://www.torry.net/printother.htm

T-Rex

 
use this "ZReport v.2.0k " 
on Components>Reports>Report Tools

http://www.torry.net/reportdesigners.htm

It's Freeware ! I use it in my project.

------------------------------
VCL description (exceprt from torry's page)

By Yuri Zaitsev. ZReport - visual text report designer and generator, native VCL. Created to produce reports for matrix printers. Key features:
produces text output with adjustable printer escapes;
works through Windows print spooler;
unlimited master-detail and even multi-dataset reports;
fine pagination etc.

Regards
Adeng
yes it WYSIWYG way.
And free...   :)

T-Rex
ASKER CERTIFIED SOLUTION
Avatar of adeng
adeng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of siki

ASKER

Yes, I have used Zreport and its very good.
Have anyone some expirience with PREPORT?
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:

Accept answer from adeng

Please leave any comments here within the next seven days.
 
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
 
Paul (pnh73)
EE Cleanup Volunteer
Thankyou for your response.

Paul (pnh73)
EE Cleanup Volunteer