CString ss = _T("Hello");
ss = ss + _T(" World");
//works fine
//but, when you are dealing with file loc c:
CString ss = _T("c:\\clsdata"), temp;
ss = ss + _T("\\jobs");//will not work
temp.Format(_T("%s\\jobs"), ss);// will work
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment