QQ登录

只需一步,快速开始

上位机MFC如何将CString类型转换成BSTR类型

[ 复制链接 ]
可以简单的调用 CString的成员函数实现转换。
例如
        CString str = _T("Hello world!");
        BSTR bstr = str.AllocSysString();//调用CString::AllocSysString函数


具体也可以在工程中测试,
这里是在对话框工程中测试。

  1. #include <comdef.h>
  2. void CGkbc8Dlg::OnPaint()
  3. {
  4.         if (IsIconic())
  5.         {
  6.                 CPaintDC dc(this); // device context for painting

  7.                 SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

  8.                 // Center icon in client rectangle
  9.                 int cxIcon = GetSystemMetrics(SM_CXICON);
  10.                 int cyIcon = GetSystemMetrics(SM_CYICON);
  11.                 CRect rect;
  12.                 GetClientRect(&rect);
  13.                 int x = (rect.Width() - cxIcon + 1) / 2;
  14.                 int y = (rect.Height() - cyIcon + 1) / 2;

  15.                 // Draw the icon
  16.                 dc.DrawIcon(x, y, m_hIcon);
  17.         }
  18.         else
  19.         {
  20.                 CPaintDC dc(this);
  21.         CString str = _T("Hello world!");

  22.         //调用CString::AllocSysString函数
  23.         BSTR bstr = str.AllocSysString();

  24.         CString strText = _T("");
  25.         strText.Format(_T("bstr = %s"), (CString)bstr);
  26.         dc.TextOut(100, 50, strText);

  27.         ::SysAllocString(bstr);
  28.                 CDialog::OnPaint();
  29.         }
  30. }
复制代码


回复

使用道具 举报

快速回复 返回列表 客服中心 搜索