Hello there,
just working on project that need to print somekind of barcode label for Production’s Serial Number.
you need 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(); }
_________________________________________________________
then do this on Visual Studio 😀
result :
Happy DAXing !!