Lines Matching refs:templateName
193 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() argument
195 …HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)t… in Create()
202 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() argument
204 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
209 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() argument
213 …aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
218 if (IS_INTRESOURCE(templateName)) in Create()
219 templateNameA = (LPCSTR)templateName; in Create()
222 name = GetSystemString(templateName); in Create()
233 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() argument
236 return DialogBoxParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
239 if (IS_INTRESOURCE(templateName)) in Create()
240 templateNameA = (LPCSTR)templateName; in Create()
243 name = GetSystemString(templateName); in Create()