現在、Motorola MC55 で 10 桁を超える Interleaved 2 of 5 バーコードを読み取るのに苦労しています。
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());
どんな助けでも大歓迎です。