TfrxDMPCommand Esc codes
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?
- 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?
Comments
Try the solutions from my post:
For the topic click here.