Hi GUys,

I am having a CString and append other CString to it by using the
+= operator. Normally that's ok but sometime the app crashes.
MSDN says:
"You should be aware that memory exceptions may occur whenever you use this concatenation operator because new storage may be allocated for characters added to this CString object. "

Ok, right. So how can I append a CString to another safely?

thanks