In response to Hike34's thread to add a \ character to a CString, I think the \ character has a meaning in such strings and to use it in a string it should itself be preceded by a \ character
CString word="hello world";
word+="\"; // or "'\'" doesn't work...
Instead of doing as above, do it like this
word +="\\" and you would have word= "hello world\".
Nkamanyi Clement