Another Simple Way to Convert Modeless Dialogs to Modal | CodeGuru

Another Simple Way to Convert Modeless Dialogs to Modal

–> This is another simple way of converting a modeless dialog into a modal dialog. While overriding the dialog’s Create() call, get the pointer to the main frame window and disable it using EnableWindow() call. BOOL CModelessDlg::Create( UINT nID, CWnd* pParentWnd ) { // TODO: Add your specialized code here and/or call the base class […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 19, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

–>

This is another simple way of converting a modeless dialog into a modal dialog.

While overriding the dialog’s Create() call, get the pointer to the main frame window and disable it using EnableWindow() call.

BOOL CModelessDlg::Create( UINT nID, CWnd* pParentWnd )
{
	

// TODO: Add your specialized code here and/or call the base class

	pParentWnd->EnableWindow(FALSE);

//You can get pParentWnd by calling

	AfxGetMainWnd() also.
	

return

 CDialog::Create(nID, pParentWnd);
}


Before destroying by “DestroyWindow()”, call EnableWindow() to set it as TRUE.

void

 CModelessDlg::OnOK()
{
	

// TODO: Add extra validation here

	...........
	..........
	.........

	AfxGetMainWnd()->EnableWindow();
	DestroyWindow();
}

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.