Home | History | Annotate | Download | only in Control

Lines Matching refs:parentWindow

194 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow)

196 HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
203 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow)
205 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
210 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow)
214 aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
226 aHWND = CreateDialogParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this);
234 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow)
237 return DialogBoxParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
247 return DialogBoxParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this);