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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. migz117

    How to Execute PCL Command (ESC X m nn) on Epson Thermal Printer using C# to increase Font Size

    const char ESC = '\x1b'; // Initialize printer sb.Append(ESC + "@"); <-- Working too sb.Append(ESC + "E" + (char)1); <-- Bold Weight it Works too // Align center sb.Append(ESC + "a" + (char)1); <-- it works too Select font by pitch and point: ESC X m nn <-- so i tried it on my code by doing...

Part and Inventory Search

Back
Top