Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PLEASE ! active the cutter in EPSON TM-T88III

Status
Not open for further replies.

arduir2003

Programmer
Dec 4, 2003
3
US
PLEASE, THANK YOU, HOW I TO ACTIVE THE CUT IN A PRINTER EPSON TM-T88III EPSON. WHICH IS THE CODE OR THE FONT ?


URGENT!!!, THANK YOU.
 
Try a KEYWORD search and you'd find:

Desktop Hardware > PC Hardware Issues > PC hardware - Peripheral issues Forum

Epson POS/Receipt Printer and ESC/POS commands
thread750-69095

Brian
 

CHR(27) + "i"

is the escape code for cutting the TMT88 paper.

Andy

 
THANK, BUT THE CODE DONT WORK, PLEASE I NEED HIS HELP. THANKS.

THIS IS THE ESC/CODE

GS V m (Function A)
GS V m n (Function B)
[Name] Select cut mode and cut paper
[Format] ASCII GS V m (Function A)
Hex 1D 56 m
Decimal 29 86 m
ASCII GS V m n (Function B)
Hex 1D 56 m n
Decimal 29 86 m n
[Range] 0 = n = 255
(Function A) m = 0, 1, 48, 49
(Function B m = 65, 66
[Description] Cuts paper in the specified mode.
•The paper is completely or partially (with one point left uncut) cut depending on the printer model.

GS V m n (Function B)
[Name] Select cut mode and cut paper
[Format] ASCII GS V m (Function A)
Hex 1D 56 m
Decimal 29 86 m
ASCII GS V m n (Function B)
Hex 1D 56 m n
Decimal 29 86 m n
[Range] 0 = n = 255
(Function A) m = 0, 1, 48, 49
(Function B m = 65, 66
[Description] Cuts paper in the specified mode.
•The paper is completely or partially (with one point left uncut) cut depending on the printer model.
 
To send control codes to the printer, which codes you already seem to have, issue a ??? (send directly to the printer) command or create a value on your report corresponding to the codes.
For example:

Decimal 29 86 m
???CHR(29) + CHR(86) + 'm'
The above may require a preceeding escape character, as in:
???CHR(27) + CHR(29) + CHR(86) + 'm'

???CHR(27) + "i"
-or-
On the report, create a field containing the value CHR(27) + "i". When you run the report, that stuff will get sent to the printer.


-Dave S.-
[cheers]
Even more Fox stuff at:
 
THANKS YOU FOR YOUR ANSWER, BUT IT DONT WORK, I USED THE CONTROL FONT AND DONT WORK, PLEASE HELP ME.
MY DRIVER IS EPSON TM-T88III Receipt XP WINDOWS
 
Did you download the manuals for POS commands from the link in Thread750-69095?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top