Bar ocde Report Issues

Hi everyone…

I designed one report (Pallet tag) with barcode and it is coming fine. But the problem is that bar code cannot be read.

I am using DAX 2009 with SP1+Hotfix1 and I set the bar code font ‘BC C128 HD Wide and BC C39 3 to 1 HD Wide ‘ (with the size of 12/24/38/44) in item master barcode setup and also same as in report But Item barcode is not scanning by reader.

My report size is 100x70mm and I can read the same barcode(Same barcode with same font and size) of the item from third party bard code designer software

How I can solve this issues?.

Regards

Hi, I hope you have solved this problem, from i see, barcode font has less readability than barcode image. The safety way is to use a control to finish your process. cos, the barcode scanner seems nothing wrong.

Hi,

In barcode128 class, in encodeString() method, modify as follows on line 120:

if (charVal == 32)
{
//rtnint = 95
rtnint = 1;
}

We had the same problem and the code above solved it. If it doesn’t work for you, try other BC 128 font, I remember it has worked but not for all BC 128 fonts

Let me know if it solve your problem.

Regards,

Thomas