Tagged Questions

12
votes
4answers
1k views

Best Practise for Writing a POS System

I'm putting together a basic Point of Sale (POS) system in C# that needs to print to a receipt printer and open a cash drawer. Do I have to use the Microsoft Point of Service SDK? I've been playing ...
6
votes
6answers
1k views

Receipt printer?

I am developing a software which require to print receipts. What is the most common type of receipt printer? Are there any industry standards for receipt printer API? Are there any .net library ...
6
votes
4answers
7k views

Feed paper on POS Printer C#

I've been trying to programatically feed the paper on a pos printer (Epson TM-U220D). The problem I have is that the last line of the document don't get printed, instead, it is printed as the first ...
5
votes
6answers
1k views

Why is FoxPro used for POS systems? [closed]

I'm looking at upgrading a POS (Point Of Sale) project which is currently built in FoxPro to .net. The planned architecture is quite complex and there is plenty of rationale behind the new ...
5
votes
2answers
1k views

C# SerialPort - emulate pos keyboard

We are trying to emulate a POS keyboard in order to integrate an application with an existing Point of Sale application. We ran across this software: Virtual Serial Port Kit It basically creates a ...
4
votes
5answers
2k views

Point of Sale Machine Software Development

I want to create a Point of Sale (POS) machine and software for it. Are there any How-To guides for this? Hardware I know where to find the hardware, but I am just wondering if there are any ...
3
votes
4answers
6k views

Epson OPOS ADK for .NET drivers for windows 7

Has anyone used Epson OPOS ADK for .NET for windows 7. i tried to install windows vista drivers on windows 7, since there are none available for windows 7, but it did not work. Please share any ...
2
votes
1answer
266 views

POS development on windows: OPOS via COM? OPOS for .Net? UnifiedPOS? …?

I plan to develop a POS system from scratch, which will be based on windows (currently XP SP3). I tried to get an overview of which API to use to work with POS devices. So far I found OPOS which is ...
2
votes
1answer
404 views

POS For .NET: Failed to set property properties of PosPrinter

I can't set properties of PosPritnter class. For example PageModeStation, PageModeVerticalPosition, PageModePrintArea etc. PosPrinter posPrinter = ...
2
votes
1answer
624 views

Problem interfacing C++ POS controls with the .NET POS SDK

We're trying implement a .NET Service Object that supports a COM interface to emulate a POSPrinter but still be compatible with the older technologies. We have our interface and class object in the ...
2
votes
3answers
2k views

POS for .Net Check Printing

We currently have check printing fully implemented and in the field for a POS application. It runs on Windows, implemented in C# and uses POS for .Net. We are having an issue where cashiers are too ...
1
vote
1answer
81 views

POS For .NET: Failed to set property DeviceEnabled property of MSR

POS For .NET: I am trying to connect MSR with POS for .net but I cant set property DeviceEnabled = true. It gives me below exception EDIT: Unable to enable the device. See inner exception for ...
1
vote
0answers
228 views

Print via POS .NET without opening cash drawer

I am preparing to create a POS application for a restaurant. I will use POS for .NET so I want the ability to access the printer and cash drawer without resorting to vendor-specific command strings. ...
1
vote
4answers
1k views

POS for .NET | Differentiate between (barcode) scanner and keyboard input

I want to differentiate between (barcode) scanner and keyboard input in an WPF application. What I need is an event which occurs whenever my scanner is providing data. In my application there is a ...
1
vote
0answers
1k views

C# POS.NET PrintNormal() Issue 'It is not Initialized'

Current C# POS.NET Printing Issue: PrintNormal() Throws Exception = 'It is not initialized' CheckHealth = 'It is not initialized' 'It is not initialized' exception when Printing to Epson ...
1
vote
4answers
354 views

Point of sale app architecture advice

I need to develop a point of sale app that will be used on several locations. In every location it will be use a single database and it will be, in another location a master database with all cashflow ...
1
vote
3answers
2k views

Configuring a POS printer using POS.NET

Is it possible to configure a POS printer service object (an Epson one) from a POS.NET application (such as configuring the IP address for a network connected printer)? It would be nice if it didn't ...
1
vote
1answer
1k views

Point of Sale Application Architecture

I have been asked to build a POS Application for a Restaurant. I have experience creating POS application in VB6.0 and have always wanted to create one with UX. I am looking to create one with WPF as ...
1
vote
2answers
610 views

POS for .NET Known Service Objects

I was wondering if anyone knew where I could find a list of LineDisplays, CashDrawers, Printers, that work well with POS for .NET. I want to get around creating my own service objects for potential ...
0
votes
1answer
293 views

Keyboard Emulating barcode reader

I'm using the Microsoft.PointOfService libraries to interact with POS hardware. Although documentation about compatible hardware is thin on the ground, I've read in places that all keyboard emulating ...
0
votes
1answer
132 views

Events pile up during CashDrawer.WaitForDrawerClose

I'm writing an application for a POS and using POS for .NET. I've found that when I call the WaitForDrawerClose method, while the application will sit and wait unresponsively until the drawer is ...