We currently have a modeless dialog. I was asked to make it modal. Here's the code:
CWnd* pWnd = ::AfxGetMainWnd();
if (myPath->CachedTool() && myPath->CachedTool()->ParentView())
pWnd = myPath->CachedTool()->ParentView();
pWnd->SendMessage(WM_COMMAND, ID_PROJ_RESULTS_POST_STUDY, 0);
I was tracing the code, and it seems that up until the last statement there is no dialog. But only after the SendMessage statement does the modeless dialog get launched… I’ve tried to Google it, but I couldn’t figure out how SendMessage can control the mode of a dialog. And I’m not sure either whether a dialog’s mode could be specified inside the constructor or something…
If anyone could she some light I would really appreciate it.
Thank you very much.