I am looking for some way i can add some letters to the end of a CString variable, im new to MFC and am learning.
This is a discussion on appending some letters to the end of a CString variable. within the C++ Programming forums, part of the General Programming Boards category; I am looking for some way i can add some letters to the end of a CString variable, im new ...
I am looking for some way i can add some letters to the end of a CString variable, im new to MFC and am learning.
If you mean append then you can use operator+= -
CString a = "some char's";
a += "some more";
zen
Thatnks alot man, wow that was easy.