What is the paper cutter for Bematech MP-2100 TH?

0

What is the paper cutter for Bematech MP-2100 TH?

Look at the fact that it is not the FI, it is not tax, it is easy on the internet when it is tax.

I tried # 27 + # 119 but did not accept

    
asked by anonymous 24.08.2017 / 18:10

1 answer

1

According to Bematech's own documentation :

  

Bematech's mini-press models that feature this feature are: MP-2100 TH, MP-4000 TH and the MP-4200 TH and MP-2500 TH. Both have the same control for guillotine drive.

As you have not quoted the programming language you are using, I will put the example in Delphi .

function ComandoTX( BufTrans: string; TamBufTrans: integer ): integer; stdcall; far; external 'MP2032.DLL'; function AcionaGuilhotina( Modo: integer ): integer; stdcall; far; external 'MP2032.DLL'

//ACIONAMENTO DA GUILHOTINA sComando := #27 + #119; iRetorno := ComandoTX( sComando, Length( sComando );

    
24.08.2017 / 18:28