Try allocating the CString from the heap. for example: CString *cs; cs = new CString("The Data"); // Do whatever delete cs; If that doesn't work you will have to alloc a char array on the heap.
K
kc 0
@kc 0
Posts
-
sizeof(CString) -
IE Right Click MenuAnyone have any usefull tips on how I can go about adding a menu option in Internet Explorer's Right Click menu for a link. I am developing downloading software in C++ and want IE to send links to my program.