BSTR sUrl;
CHAR* pbstr;
USES_CONVERSION; //convert를 위한 매크로
pbstr=OLE2A(sUrl); //bstr을 char로 convert

CString s(pbstr);
AfxMessageBox(s);
 

+ Recent posts