Please find the attached image, which contains 5 barcode. But with our code it is not reading all barcodes.
Can you please help us to resolve this?
We are using the code as below.
using (BarCodeReader barCodeReader = new BarCodeReader(item, BarCodeReadType.Code39Standard | BarCodeReadType.PatchCode))
{
while (barCodeReader.Read())
{
string str = barCodeReader.GetCodeText().ToString();
foreach (string fRegExList in this.FRegExList)
{
if (!Regex.IsMatch(str, fRegExList))
{
continue;
}
num++;
this.FIFOModified = true;
image[string.Format(“Barcode{0}”, num)] = str;
break;
}
}
}