If you are getting following error:
error C2664: 'void ATL::CStringTIn Project Menu select your Project Properties.
In Configuration Properties
Set "Character Set" as "Use Multi-Byte Character Set"
Solution2:
where ever you are declaring "CString" variable add Unicode support.
Example:
CString csStr(_T("")); //_T("") is for unicode support
Solution2:
where ever you are declaring "CString" variable add Unicode support.
Example:
CString csStr(_T("")); //_T("") is for unicode support
No comments:
Post a Comment