How to make bematech printer cut the print in the middle?

3

I'm implementing a report in Report Builder in Delphi, and I need the printer (Bematech - MP 4200 TH non-fiscal printer) in the middle to make a cut and continue the same impression.

Does anyone know which component or command I use in the report builder so it identifies a cut on paper?

I'm trying to use the 'line' component, as I thought it would have some property that cuts the paper when it's drawn.

    
asked by anonymous 20.08.2014 / 18:04

1 answer

3

I found the following site that teaches you how to do: Actinony the guillotine in the non-tax minimpressora

Basically, if you are using the printer DLL, you will send the following command after making the appropriate declarations:

//ACIONAMENTO DA GUILHOTINA

sComando := #27 + #119;
iRetorno := ComandoTX( sComando, Length( sComando );

If it is via the printer driver, you must configure the printer properties to make a cut at the end of the print, or enter the w command in certain property boxes

    
21.08.2014 / 15:44