Any ideas how i can best drive a USB POS printer from c#. POS printers are usually serial, TCP/IP or USB based. I know how to accomplish serial and TCP/IP but have no idea about communications through USB in C#. I know that there is a layer available from Microsoft called POS.NET, but I want to try and avoid using this. Any ideas or any C# libraries that people can recomend would be really appreciated. Thanks
|
|
You should really consider using POS for .NET and OPOS or .NET service objects (Epson, for example provides both). POS for .NET conforms to the UnifiedPOS industry standard for interfacing with these devices. |
||
|
|
|
|
There is a C# wrapper for Win32 USP api's from the icsharpcode guys here, and I've seen at least one other reference to USB stuff in .Net. What may be tricky is whether or not the Printer requires OPOS in order to function. I did some work on a POS project in .Net a few years back, and from what I remember OPOS is pretty much the standard for the hardware side of things (And at the time all OPOS APIs utilized COM interop). The devices sometimes also have a documented proprietary communications protocol, in which case you should be able to utilize that to talk to the device using the USB library. |
||
|
|
|
|
If the printer registers itself as a Human Interface Device, you can P/INVOKE into the appropriate Win32 APIs. Here are the signatures:
|
|||
|
|
|
If you've already rolled your own printer control code then you can pass the commands straight through to the printer by setting up the printer using the "Generic / Text" printer driver on the USB port. That driver will not re-interpret the control codes and try to print them, but it will just hand them off to the printer as-is. Then the USB port can be used just like any other printer. This approach worked for me on a POS system that I developed. |
||
|
|
