(CString to char* conversion)
Per convertire una stringa in formato CString in una in formato char:
char temp[256]; //esempio CString string; //codice... strcpy(temp,LPCTSTR(string)); //strcpy(destinazione, sorgente)
ora la stringa temp contiene la CString.