static void JobCreateforQRCode(Args _args)
{
Image image;
container imageContainer;
str url;
EFDocQRCode_BR qrCode;
// The url to create the QR code.
url = 'http://www.google.com';
// Create an instance of the QR code class
qrCode = new EFDocQRCode_BR();
// Generate a QR code for the URL and save the result to a container
imageContainer = qrCode.generateQRCode(url);
// Use AX's good old Image class to load the image from the container
// and save it as a file
image = new Image();
image.setData(imageContainer);
image.saveImage("F:\QrCode.jpg", ImageSaveType::JPG);
}
Wednesday, 27 May 2015
QR Code DAX 2012
Subscribe to:
Post Comments (Atom)
AZURE INTERVIEW QUESTIONS AND ANSWERS
AZURE INTERVIEW QUESTIONS AND ANSWERES 2021 2. What is cloud computing? Explanation: It is the use of servers on the internet to “store...
-
D365 INTERVIEW QUESTIONS Technical For Functional click here 1. What are the new features of D365 ? WHATS NEW IN D365 di...
-
D365 F&O FUNCTIONAL INTERVIEW QUESTIONS Below are the general functional interview questions asked .Please note that the interview...
-
EVENT HANDLERS IN D365 With D365 event handlers play very important and hence we need to know how and when to use them to maximum bene...
-
How to write a validate write data event handler code for a table Right-click onValidatedWrite of the event at the table level, and then...
No comments:
Post a Comment