Has anyone experienced problems with the Motorola EMDK and reading 12 of 5 barcodes? We have an application that reads most barcodes, but not the 12 of 5 barcodes. When we create the ReaderData object we use the MaximumLabel for the length so I would have thought it could cater for all cases. MyReaderData = New Symbol.Barcode.ReaderData(Symbol.Barcode.ReaderDataTypes.Text, Symbol.Barcode.ReaderDataLengths.MaximumLabel) Any suggestions would be appreciated. Thanks
12of5 barcodes// Expert user has replied. |
5 Replies
You were right. Specifying both lengths did the trick. It is scanning them in now. Thanks for the suggestion.
Many thanks for your suggestion. Do you know if I would then need to specify lengths for all barcode types, or can I just add in the length specifications for the I2of5 ? Regards
You may need to set length whenever the default length is not good enough to read the barcode.For most cases the default length would suffice
Thanks so much. I appreciate you getting back to me so quickly !
Hi, try to set MinimumLength and MaximumLength Property to 0 in decoder api, if you like to read all I2/5 Codes. Good luck