Hi,
I use this method to convert CString to char*
CString data;
const char* data_char = (LPCTSTR) data;
but this method works only if i use const char*. This means i cant manipulate it rite?
how do i make it into char * instead of const char* ?
or, can someone suggest other method?
thx
Start Free Trial