1

我正在为我的一个项目使用 .Net 框架版本 1.12 的 POS。

Microsoft POS for .NET 是一个类库,它是 Microsoft Windows Embedded for Point of Service 的一部分。 http://msdn.microsoft.com/en-us/library/ms828083%28v=winembedded.10%29.aspx

    private PosPrinter GetReceiptPrinter()
    {
        PosExplorer posExplorer = new PosExplorer(this);
        DeviceInfo receiptPrinterDevice = posExplorer.GetDevice(DeviceType.PosPrinter);
        return (PosPrinter)posExplorer.CreateInstance(receiptPrinterDevice);
    } 

以上是查找打印机的示例代码。现在我的问题是 POS 无法检测到打印机,而只能在我运行应用程序时打开带有数据的模拟器。

谁能帮帮我吗 ?

4

2 回答 2

1

你的代码行

DeviceInfo receiptPrinterDevice = posExplorer.GetDevice(DeviceType.PosPrinter);

将返回默认的或找到的第一个PosPrinter,在您的情况下,它看起来像是模拟器。

您需要(1)遍历打印机集合并以某种方式选择您想要的打印机。IE

foreach (DeviceInfo deviceInfo in explorer.GetDevices(DeviceType.PosPrinter))
{
    if (isThisThePrinterIWant(deviceInfo))   // user defined function (maybe lookup saved preference file)
    {
        return (PosPrinter)posExplorer.CreateInstance(deviceInfo );
    }
} // Note: GetDevices() not GetDevice()

(2)为您的打印机设置一个逻辑名称(使用您的打印机附带的软件,或 Pos for .Net SDK 附带的 POSDM 实用程序)并将上述行更改为

DeviceInfo receiptPrinterDevice = posExplorer.GetDevice(DeviceType.PosPrinter, "madeUpLogicalName");

(3)只需将所需的打印机设置为默认打印机,然后保持您的代码不变。

于 2013-12-13T01:39:14.543 回答
1

我为运行 Windows CE 作为操作系统的 POS 开发了一个应用程序,但对于该 POS,制造商提供了一个自定义 dll 来调用我在 C# 代码中使用的打印机操作。请咨询 POS 制造商,看看他们是否提供了相同的自定义 dll。

于 2013-01-01T11:02:38.323 回答