edit control
メインダイアログのに間違ったデータがある場合にポップアップするカスタムダイアログメッセージボックスがあります。
CDlgError dlgError = new CDlgError(this);
dlgError.Create(CDlgError::IDD, this);
dlgError.m_staticMessage.SetWindowTextA("Error message!");
dlgError.ShowWindow(SW_SHOW);
//more code
ポップアップダイアログOK button
でを押した後にのみ、残りのコードを実行したいと思います。CDlgError
どうやってやるの?