我正在开发一个使用条形码扫描仪(摩托罗拉 MC75A)的移动应用程序。我为 .NET v2.5 安装了 EMDK。
我使用库 Symbol.dll 和 Symbol.barcode2.dll 来使用条形码扫描仪。但是当我使用 Windows Mobile 6.5 在模拟器设备上运行代码时出现错误。
代码:
Barcode2 myBarcode2 = null;
Device MyDevice = SelectDevice.Select(
"Barcode",Symbol.Barcode2.Devices.SupportedDevices);// Exception here
例外:
{"Can't find PInvoke DLL 'SCNAPI32.dll'."}
我需要另一个模拟器或其他东西吗?
谢谢