2.2.6.10.4 Dialog::Create

Description

Call this member function to invoke the modalless dialog box.

Syntax

BOOL Create( HWND hWndParent = NULL, DWORD dwOptions = 0, LPCSTR OpsName = NULL )

Parameters

hWndParent
dwOptions
OpsName

Return

Returns TRUE if Successful else return FALSE.

Examples

EX1

#include <Origin.h>
#include <Dialog.h>

void Create_Dialog(Dialog& MyDlg)
{
	MyDlg.Create(); // create a modalless dialog
}

Remark

See Also

Dialog::DoModal

Header to Include

Dialog.h