How do I send printer ESC codes from a Word document

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to send somes printer control ESC codes to a Citizen serial printer
from a word document (to print a stored logo on the printer 1st, then the
text from the word document).

Thanks in Advance
 
I need to send somes printer control ESC codes to a Citizen serial printer
from a word document (to print a stored logo on the printer 1st, then the
text from the word document).

Thanks in Advance

I have to assume you know the codes you need. To get them to the
printer, insert a {PRINT} field at the beginning of the document.

The help topic on that field is really sparse, but if memory serves,
there's a little trick to putting the ESC character (ASCII 27) in the
field. For example, if you need to send the ESC character followed by
the string &p20, you'd write it as

{ PRINT 27"&p20" }
 
Back
Top