Lines Matching defs:templateName
388 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow)
390 const HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
397 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow)
399 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
404 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow)
408 aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
413 if (IS_INTRESOURCE(templateName))
414 templateNameA = (LPCSTR)templateName;
417 name = GetSystemString(templateName);
428 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow)
431 return DialogBoxParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
434 if (IS_INTRESOURCE(templateName))
435 templateNameA = (LPCSTR)templateName;
438 name = GetSystemString(templateName);