I am working on a small project for a Retail Management Software, which will be using a POS printer (I think that's what we call it). I need a create a bill for it in the end. But i am stuck here, and not able to proceed. So suppose if I generate my bill in a separate form with appropriate dimensions (of width of POS bills), will i be able to print it properly? I am using C# and .NET 4.0 framework. I don't have much knowledge about POS devices. I am working for really a small local client which needs a basic model of software. I am also a fresher so please help me out.

If my question is not clear, let me know i will try to elaborate my thought.

link|improve this question

80% accept rate
Just so you know, POS == Point Of Sale – jadarnel27 Sep 13 '11 at 12:53
1  
This is a rather large issue, and creating a printable receipt through a POS printer is no small feat. You should probably search around Google first, since StackOverflow is for specific programming quesitons. – SpikeX Sep 13 '11 at 12:53
@jadarnel27: you can say that, i just know this and have some idea about WEPOS – rapsalands Sep 13 '11 at 12:58
First task should be to get the manual for the POS device, from my limited contact with Receipt printers is that you generally have to dive into the bowels of the system to print properly. Unfortunately it's not like printing on an A4 piece of paper. – Sres Sep 13 '11 at 13:08
@user815600, i think it would be easier to print, if you output the bill in console application format (i mean in command prompt window), and try to print from there. you will need your client's printer for demo prints and then fix a format for the bills generated hereafter, but that is just my opinion :) – Bravo Sep 13 '11 at 13:16
show 1 more comment
feedback

1 Answer

Well I designed a POS application (in Delphi) and altough there are many little issues with printing a receipt or a bill it´s not rocket science. I just print a receipt by simply, well, printing like any other printer, the difference is that you send lines of 30-38 characters long (depending on the printer driver, font and size). To start, you could print using 2 methods: Sending Ascii characters and sending printer commands (to set the font style, color, etc) for that specific printer or the second method is to set the font, size, etc using C# like printing to any other normal/desktop printer.

You could try printing following the example of the page and my suggestions: http://ondotnet.com/pub/a/dotnet/2002/06/24/printing.html

link|improve this answer
nice to have your reply Luis. Let me go through it. will comment if every thing DOES NOT go according to plan – rapsalands Sep 17 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.