AfxMessageBox出现错误error C2665

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一样

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

转载于:https://www.cnblogs.com/52yixin/articles/2125811.html

你可能感兴趣的:(c/c++)