error C2664: “strcpy”: 不能将参数 2 从“CString”转换为“const char *”

时间:2021-04-25 20:18:11

 这是错误:
error C2664: “strcpy”: 不能将参数 2 从“CString”转换为“const char *”

这是源码:
LPSTR m_pszMapView;
CString m_strSend;
strcpy(m_pszMapView,m_strSend);


解决方法:在项目->XX工程属性->项目配置,字符集选择为多字节字符集.

error C2664: “strcpy”: 不能将参数 2 从“CString”转换为“const char *”