Skip to content

Instantly share code, notes, and snippets.

@z4none
Created March 17, 2017 02:37
Show Gist options
  • Select an option

  • Save z4none/703e928bf2f5d152ca633a45659cc1c4 to your computer and use it in GitHub Desktop.

Select an option

Save z4none/703e928bf2f5d152ca633a45659cc1c4 to your computer and use it in GitHub Desktop.
MFC Create noModal Dialog
CDialogBasedDlg dlg;
if(dlg.Create( CDialogBasedDlg::IDD ))
{
dlg.ShowWindow( SW_HIDE );
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.RunModalLoop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment