If this thread already exists my honest apologies.
Currently I am in development of some cool EPOS system (at the beginning :)) I have got EPSON TM-T88III Printer and developing everything in C# and .NET 4.5 .
Currently I am doing the printing in a fashion of printing graphics like so :
graphic.DrawString(ord.name, font, b, startX, startY + offset);
offset += (int)fontheight + 5;
but the printer takes time to print stuff. I would like to get it printed using some king of POS API or something to make it faster. The problem is I don't know where to start and what options are available to me.
Short tutorial to print one two lines of text would be much appreciated !
Thanks in advance, David