我用的是ListView 但窗体上有一个DialogBar
在上面放置了一个IDC_BROWSER的webbrower控件然后输入下面代码
void CMainFrame::OnFileNew()
{
         // 
// load page
//

IWebBrowser2* browser = (IWebBrowser2*)m_wndDlgBar.GetDlgItem(IDC_BROWSER); string url;
url = _T("http://www.csdn.net");
browser->Navigate(_com_util::ConvertStringToBSTR(url.c_str()),NULL,NULL,NULL,NULL);}结果任何对browser的操作都会出错 
un-Time Check Failure #0 - The value of ESP was not properly saved across a function call.  This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention.
请问如何解决?