error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”相关的知识,希望对你有一定的参考价值。
error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”
出现错误的语句 m_pdlg->MessageBox("连接失败");
在VS2015上面上面的语句会报错,但是在VC 6.0++ 没有出现错误,出现这样的错误主要是VC 6.0++是比较老的开发软件了,随着技术的更新,VS2015上面已经舍去了VC 6.0++上面的功能,解决的办法主要有2种
第一种、将上面的语句改为m_pdlg->MessageBox(_T("连接失败"));
第二种、在VS项目属性->常规->字符集改为未设置,一般默认都是使用Unicode字符集
以上是关于error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”的主要内容,如果未能解决你的问题,请参考以下文章
求助:error C2664: “CreateWindowExW”: 不能将参数 3 从“const char [8]”转换为“LPCWSTR”
error C2664: “StrCmpW”: 不能将参数 2 从“const char [12]”转换为“PCWSTR”
VS2012 error C2664: “std::make_pair”:无法将左值绑定到右值引用
error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”
解决error C2664: no instance of constructor "CFileDialog::CFileDialog" matches the list
解决error C2664: no instance of constructor "CFileDialog::CFileDialog" matches the list