Print SSRS Barcode in D365Fo.
Check below code to convert your string to Barcode string :
public BarCodeString ShowBarcode(str _text) { Barcode barcode; barcode = Barcode::construct(BarcodeType::Code128); barcode.string(true, _text); barcode.encode(); return barcode.barcodeStr(); }
Keep daxing!!
No comments:
Post a Comment