Hi All ,
I have created an SSRS report which has a Barcode field. When i tried to scan the Barcode , its is not getting scanned . We are using Font "BC C128 Narrow" with size 40
I have used following code : -
public str getBarcode(str _barCodeText)
{
BarcodeCode128 barcode;
barcode = Barcode::construct(BarcodeType::Code128);
barcode.string(true, _barCodeText);
barcode.encode();
return barcode.barcodeStr();
}
please suggest me , any help will be greatly appreciated.
*This post is locked for comments
I have the same question (0)