
printer control object - cannot send Esc character to printer
Hi,
I got a problem, I want to use the printer object to send out some
printer control command to the printer but it didn't work.
e.g. printer.print chr$(27) + "6"
If I use this on the following, it work fine
e.g. Open "c:\test.txt" as output #1
print #1, chr$(27) + "6"
close #1
So does any one know how to send the Esc sequence of printer control
through the printer object?
Thanks
Paul Chan