The cash drawers that I've worked with plug into a receipt printer. There's usually an ASCII character that you send to the printer that fires the cash drawer.
Some receipt printer drivers include the option to fire the cash drawer any time there is activity on the printer without any specific direction from the application printing to the printer.
You shouldn't need an API call. OPEN "COM1" FOR OUTPUT AS #1 and Print #1... will do it.
Main Topics
Browse All Topics





by: leavinmatePosted on 2003-01-28 at 19:47:55ID: 7834917
If I recall correctly, most cash tills connect to a serial port on the PC.
On the Till itself, there should be some dip switches that are set to the ASCII code to listen for.
So what you would do is open the com port, send the ASCII character, and the till will respond by opening the draw.
If I am correct, you can just use the MSCOmmCtl so there would be no need for API calls.