- GuiTestingWithMfc . . . . 3 matches
Dialog Based 의 경우 Modal Dialog 를 이용하게 된다. 이 경우 Dialog 내에서만 메세지루프가 작동하게 되므로, DoModal 함수로 다이얼로그를 띄운 이후의 코드는 해당 Dialog 가 닫히기 전까지는 실행되지 않는다. 고로, CppUnit 에서의 fixture 를 미리 구성하여 쓸 수 없다.
int nResponse = dlg.DoModal();
int nResponse = dlg.DoModal(); - 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 2 matches
dlgAbout.DoModal();
dlgAbout.DoModal(); - 5인용C++스터디/소켓프로그래밍 . . . . 1 match
if (dlg.DoModal() == IDOK) - CppUnit . . . . 1 match
// Dialog Based 의 경우는 dlg.DoModal ()을 실행하기 전에 적어준다. - MFC/MessageMap . . . . 1 match
aboutDlg.DoModal(); - MFC/Socket . . . . 1 match
if(dlg1.DoModal() == IDOK) - 데블스캠프2009/목요일/연습문제/MFC/김태욱 . . . . 1 match
dlgAbout.DoModal(); - 데블스캠프2009/목요일/연습문제/MFC/박준호 . . . . 1 match
dlgAbout.DoModal(); - 데블스캠프2009/목요일/연습문제/MFC/송지원 . . . . 1 match
dlgAbout.DoModal(); - 데블스캠프2009/목요일/연습문제/MFC/정종록 . . . . 1 match
dlgAbout.DoModal();