hello people,
I try to cast a CString in char* but it only take the first character
CString sox =(CString)"A060," ;
char* pChar = (char*)(LPCTSTR)(CString)sox ;
after i built it, there is only the character "A" in pChar and not "A060,"
HELP !!!!