BSTR 和CString的相互转换
CString->BSTR,比较简单

CString s;BSTR bstr;
BSTR bstr=s.AllocSysString();
但BSTR->CString,却转换不正确
CString s;s=(CString)bstr;编译通过,但结果不正确,望高手指点