本文介绍了OPOS PosPrinter无法打印的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
PosExplorer posExplorer = new PosExplorer();
DeviceCollection receiptPrinterDevices = posExplorer.GetDevices(DeviceType.PosPrinter);
DeviceInfo receiptPrinterDevice = posExplorer.GetDevice(DeviceType.PosPrinter,SRP2);
PosPrinter printer =(PosPrinter)posExplorer.CreateInstance(receiptPrinterDevice);
printer.Open();
printer.Claim(10000);
printer.DeviceEnabled = true;
printer.PrintNormal(PrinterStation.Receipt,test print 1);
我调试并且一切都顺利通过,已经确认目标打印机是正确的,但打印机没有打印任何东西。我做错了什么步骤?非常感谢任何指导。谢谢
解决方案
这篇关于OPOS PosPrinter无法打印的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!