Monday, July 11, 2022

Create Dialog box using x++ in D365FO.

 In D365FO most of the time we are using dialog forms but in some times we need to create dialog box.

Using below code we can create Dialog Box. We can any used


if (Box::okCancel("Dialog message", DialogButton::Cancel, "Dialog title") 
                                                                == DialogButton::Ok)
{
// Your code
}
Box::info("your message");
Box::warning("your message");


Keep Daxing!!

No comments:

Post a Comment