BSTRの文字列をAfxMessageBoxで表示する

_bstr_t経由でCStringにコピーして出力

void CVbsDlg::ShowBSTR(BSTR bstr)
{
  _bstr_t bstrStart(bstr);

  CString s;

  s.Format(_T("%s"), (LPCTSTR)bstrStart);

  AfxMessageBox(s);

}