我目前正在努力让摩托罗拉 MC55 读取 10 位以上的 5 个条码中的 2 个交错。
我浏览了 Motorola EMDK .NET 2.6 的帮助文件,但我不知道如何增加最大条形码长度。
以下是 C# 中的一些示例代码:
// Create reader
this.MyReader = new Symbol.Barcode.Reader();
// Create reader data
this.MyReaderData = new Symbol.Barcode.ReaderData(
Symbol.Barcode.ReaderDataTypes.Text,
Symbol.Barcode.ReaderDataLengths.MaximumLabel);
// I can read the maximum length of I2of5 but I don't know how to set
// Output is 10
MessageBox.Show(this.MyReader.Decoders.I2OF5.MaximumLength.ToString());
任何帮助将不胜感激。