Does any body know how to create a C# application that can open a drawer connected to the computer and print receipt at same time?
Drawer Name: PCD-354 Electronic Cash Drawer
Cash receipt printer: Epson TM-T88v
Does any body know how to create a C# application that can open a drawer connected to the computer and print receipt at same time?
Drawer Name: PCD-354 Electronic Cash Drawer
Cash receipt printer: Epson TM-T88v
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.PointOfService;
namespace POS
{
public class CashDrawerClass
{
CashDrawer myCashDrawer;
PosExplorer explorer;
public CashDrawerClass()
{
explorer = new PosExplorer(this);
DeviceInfo ObjDevicesInfo = explorer.GetDevice("CashDrawer");
myCashDrawer = explorer.CreateInstance(ObjDevicesInfo);
}
public void OpenCashDrawer()
{
myCashDrawer.Open();
myCashDrawer.Claim(1000);
myCashDrawer.DeviceEnabled = true;
myCashDrawer.OpenDrawer();
myCashDrawer.DeviceEnabled = false;
myCashDrawer.Release();
myCashDrawer.Close();
}
}
}
try that. maybe it will help you have an overview on things
try to use this link buddy it will help.. http://social.msdn.microsoft.com/Forums/en/posfordotnet/thread/968d7d90-9376-4fee-9838-b79ec0e630e3