AfxMessageBox(("click")); Error

AfxMessageBox(("click"));

错误 error C2665: 'AfxMessageBox' : none of the 2 overloads could convert all the argument types

解决方法:
AfxMessageBox(_T("click"));

解释:如果程序中define   _UNICODE,则可用_T   or   _TEXT将后面的内容转为UNICODE格式字符串,否则和不用_T一样

或者就修改项目属性里面的字符编码

猜你喜欢

转载自blog.csdn.net/damon1118/article/details/10155501
今日推荐