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