Cannot Convert const char* to int in MFC(VC++)?
I am appending one CString value with integer but getting error as "Cannot Convert const char* to int .
int iFolderType = 0;
CString strCurrFolder = "";
HShareFolder = m_pTreeview->InsertItem(strCurrFolder,hChildItem);
m_pTreeview->SetItemImage(HShareFolder,2,2);
if(bCheck == false)
{
iFolderType = eBOTH;
}
else
{
iFolderType = eCIFS;
}
strCurrFolder.Append("|开发者_JAVA技巧");
strCurrFolder.Append(iFolderType); //This line gives error
m_strFolderTypeList.AddHead(strCurrFolder);
You'll have to convert it to CString or const char*. The easiest way is using CString::Format
CString strFolderType;
strFolderType.Format(_T("%d"), iFolderType);
strCurrFolder += strFolderType;
精彩评论