mtmsuhail / ESC-POS-USB-NET

This project is a simple .NET (C#) Implementation of the Epson ESC/POS Printing using USB Device Driver.
MIT License
205 stars 88 forks source link

Network Printer #40

Open averied opened 3 years ago

averied commented 3 years ago

Just to make sure; I can print with this library to a local USB printer; but is it possible to print to a network printer?

I have tried with the local printer name, and with the shared printer path, but it just throws an "unable to access printer" error

 Printer printer = new Printer(@"\\192.168.1.11\MyEscPosPrinter");
 Printer printer = new Printer("MySharedEscPosPrinter");