关于点击按钮弹出对话框的问题
我希望实现这样的功能:建立一个基于对话框的mfc程序,运行后出现一个对话框,点击确定后弹出一个可以实现人机交互的对话框!(只是弹出来)我先在DIALOG里面插入一个对话框,然后在最开始的对话框中的"确定"按钮双击,建立新类,进入函数编写:MyDialog dlg;
dlg.DoModal;
CDialog::OnOK();
可是编译出来结果错误如下:
E:\code\qqq\qqqDlg.cpp(175) : error C2065: 'MyDialog' : undeclared identifier
E:\code\qqq\qqqDlg.cpp(175) : error C2146: syntax error : missing ';' before identifier 'dlg'
E:\code\qqq\qqqDlg.cpp(175) : error C2065: 'dlg' : undeclared identifier
E:\code\qqq\qqqDlg.cpp(176) : error C2228: left of '.DoModal' must have class/struct/union type
希望大家帮帮我!