Posts

Showing posts with the label Dialog creation

Creating a Dialog using X++

Static Void DialogExample(Args _args) {         Dialog                  dialog ;         DialogGroup         dialogGrp;         DialogField           dlgCustAccount;       DialogField           dlgCustName;       CustAccount         custAcct;       CustName            custName;       ;       dialog.Caption("Customer information");       dialogGrp = dialog.AddGroup("Setup");     ...