switch(PNum)
{
//公共点个数为0时,初始化转换参数为默认值
case 0:
AfxMessageBox(_T("请输入公共点参数!"),MB_OK);
m_Dx = 0.0;
m_Dy = 0.0;
m_Dh = 0.0;
m_T = 0.0;
m_K = 1.0;
break;
以上代码编译为什么提示
1>c:\users\administrator\desktop\coord_trans\coord_trans\MainFrm.h(903) : error C2065: “MB_OK”: 未声明的标识符
1>c:\users\administrator\desktop\coord_trans\coord_trans\MainFrm.h(903) : error C3861: “AfxMessageBox”: 找不到标识符
1>c:\users\administrator\desktop\coord_trans\coord_trans\MainFrm.h(903) : error C3861: “_T”: 找不到标识符
没包含MFC的头文件。
创建项目的时候没选支持MFC的模板的话,用支持MFC的模板重新创建项目。其他项目模板和MFC差别太大,要加MFC支持太麻烦。
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP
本文解决了一个关于MFC未声明标识符的问题,提供了错误代码示例并指出了未包含MFC头文件导致的问题。
7037

被折叠的 条评论
为什么被折叠?



