Hey guys. In this article, I will show you how to write the code to create your own QR code and Bar code in Dynamics 365 Finance and Operation using x++ code.
I believe many of you are struggling with this problem and may not be getting the right one at right time. So, this gift is for you.
What you need to do?
- Create two simple classes, one is for QR code creation helper and other is for Bar code generation helper and paste the below code in it.
- Now, you can use these classes where you need to add the Bar code or QR code by simply calling it.
Bar code
///
public class AA_CreateBarcodeHelper
{
///
/// Barcode creation
///
/// Pass the text that you want to scan while scanning Bar Code
/// Barcode
public static BarCodeString showBarcode(str barcodeText)
{
Barcode barcode;
barcode = Barcode::construct(BarcodeType::Code39);
barcode.string(true, barcodeText);
barcode.encode();
return barcode.barcodeStr();
}
}
>
QR code
///
public class AA_CreateQrCodeHelper
{
///
/// Generate QR code
///
/// Pass the text that you want to scan while scanning QR Code
/// Bitmap
public static Bitmap generateQRCodeFromBase64(str qrCodeText)
{
Bitmap qrCode;
EFDocQRCode_BR generateQR = new EFDocQRCode_BR();
generateQR.parmErrorCorrectionLevel(QRCodeErrorCorrectionLevel::Medium);
try
{
qrCode = generateQR.generateQRCode(qrCodeText);
}
catch (Exception::CLRError)
{
warning("@ApplicationSuite_Localization:QRCodeIsDamaged");
}
return qrCode;
}
}>