CAxDialogImpl::EndDialog

BOOL EndDialog( int nRetCode );

Return Value

TRUE if the dialog box is destroyed; otherwise, FALSE.

Parameters

nRetCode

[in] The value to be returned by DoModal.

Remarks

Destroys a modal dialog box. EndDialog must be called through the dialog procedure. After the dialog box is destroyed, Windows uses the value of nRetCode as the return value for DoModal, which created the dialog box.

Note   Do not call EndDialog to destroy a modeless dialog box. Call DestroyWindow instead.

CAxDialogImpl OverviewClass Members

See Also

CAxDialogImpl::DoModal