Salut

J'ai un pb de conversion d'1 CSTring en std::string
En effet j'ai utilis� de qui �tait ecrit dans la faq a ce sujet l�!

j'ai tap� le code :
strWord = CStringTok(NULL,".",bEndParse);
std::string stringWord((LPCTSTR)strWord);

avec strWord etant un CString

il me met � la compil un message d'error :

C:\work_bp\Applis Windows\CineTrans\Edit_Gamma.cpp(445) : error C2039: 'string' : is not a member of 'std'
C:\work_bp\Applis Windows\CineTrans\Edit_Gamma.cpp(445) : error C2065: 'string' : undeclared identifier

il ne conna�t pas std !!

d'autre part je cherche � transformer mon CString en minuscules

je tape donc le code
_mbsupr((unsigned char*) stringWord );

en supposant que stringWord est un CString

A la compil j'ai une erreur :
Ne peut pas convertir un CString en ( unsigned char *).

alors quel solution(s) ?