This documentation is archived and is not being maintained.
RunBaseDialogable.closeOk Method [AX 2012]
Must close the form with an OK.
All RunBase dialog forms that are created in the Application Object Tree (AOT) must have this method. A FormRun class already has the method.
The method must contain at least the following code.
void CloseOk()
{
if (RunBase.checkCloseDialog())
{
super();
}
}