CString
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
CString overloads the array access operator [], so you can access it and modify characters as if it were just a character array. e.g. CString sTmp( _T("abcdefgh") ); TCHAR ch = sTmp[1]; // ch = 'b' sTmp[4] = 'q'; // sTmp is now "abcdqfgh" Dave http://www.cloudsofheaven.org