Home > Software engineering >  Using DoModal pop-up dialog, the task bar will not show the new dialog box?
Using DoModal pop-up dialog, the task bar will not show the new dialog box?

Time:05-08

 
//close the current dialog
CDialogEx: : OnOK ();

//show another dialog
//but when CTest2Dlg taskbar without this dialog box, how to solve, please, let it shows in the taskbar?
CTest2Dlg DLG.
DLG. DoModal ();

CodePudding user response:

Check in dialog resource properties WS_EX_APPWINDOW attribute

  • Related