Help - Search - Members - Calendar
Full Version: TfrxDMPCommand Esc codes
Fast Reports forum > Fast Reports Products > FastReport 4.0
peterolivier
The Esc code at the end of the form does not seem to work:

- I have an Epson TM-T88II printer for which i created a matrix report.
- At the end of the report i added a TfrxDMPCommand component.
- I've set the command property to #27#105 (Partial Cut).
(tried both epson and generic emulation without success)

My next idea was to put my delphi code in the afterprint event.
(See the body of the procedure underneath)

var
F : TextFile;
begin
AssignFile(F,'COM5');
Rewrite(F);
Writeln(F, #27#105);
CloseFile(F);
end;

on top of the pascal script i added "uses system" (since Texfile was not recognized).
however then the compiler complained about not recognizing "system".

any suggestions?
basswar
Hi!

Try the solutions from my post:

For the topic click here.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.