RunBaseDialogable.closeOk Method [AX 2012]

Must close the form with an OK.

public void closeOk()

Run On

Client

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(); 
    } 
}

Community Additions

ADD
Show: