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一样
或者就修改项目属性里面的字符编码
时间: 2024-10-01 05:39:34