N napsee New Member Sep 25, 2013 #1 Could anyone knows how to set font size when using this procedure?.. Output to Printer. Put "Hello World" at 1. Output close.
Could anyone knows how to set font size when using this procedure?.. Output to Printer. Put "Hello World" at 1. Output close.
JamesBowen 19+ years progress programming and still learning. Sep 26, 2013 #3 Old school stuff using the Epson ESC/P printer control language. Code: Output to Printer. PUT CONTROL CHR(27)+'M'. /** Select 12-cpi **/ Put "Hello World" at 1. PUT CONTROL CHR(27)+'P'. /** Select 10-cpi **/ Output close. I don't actually know if this type of control code work on modern day laser printers. I haven't dun this kind of printing for about 11+years. Ref: http://support.epson.ru/products/manuals/000350/part1.pdf
Old school stuff using the Epson ESC/P printer control language. Code: Output to Printer. PUT CONTROL CHR(27)+'M'. /** Select 12-cpi **/ Put "Hello World" at 1. PUT CONTROL CHR(27)+'P'. /** Select 10-cpi **/ Output close. I don't actually know if this type of control code work on modern day laser printers. I haven't dun this kind of printing for about 11+years. Ref: http://support.epson.ru/products/manuals/000350/part1.pdf