Created
March 17, 2017 02:37
-
-
Save z4none/703e928bf2f5d152ca633a45659cc1c4 to your computer and use it in GitHub Desktop.
MFC Create noModal Dialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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