CWnd::ExecuteDlgInit
BOOL ExecuteDlgInit( LPCTSTR lpszResourceName );
BOOL ExecuteDlgInit( LPVOID lpResource );
Return Value
TRUE if a dialog resource is executed; otherwise FALSE.
Parameters
lpszResourceName
A pointer to a null-terminated string specifying the name of the resource.
lpResource
A pointer to a resource.
Remarks
Call this member function to initiate a dialog resource.
ExecuteDlgInit will use resources bound to the executing module, or resources from other sources. To accomplish this, ExecuteDlgInit finds a resource handle by calling AfxFindResourceHandle. If your MFC application does not use the shared DLL (MFCx0[U][D].DLL), AfxFindResourceHandle calls AfxGetResourceHandle, which returns the current resource handle for the executable. If your MFC application that uses MFCx0[U][D].DLL, AfxFindResourceHandle traverses the CDynLinkLibrary object list of shared and extension DLLs looking for the correct resource handle.
CWnd Overview | Class Members | Hierarchy Chart
See Also CDialog::OnInitDialog,