本文介绍了如何捕获InvokeHelper的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好:

在某些计算机中,我调用InvokeHelper函数失败,但我没有收到任何错误消息,而在其他计算机中它成功。



 静态 BYTE parms [] = VTS_BSTR VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT; 
try
{
InvokeHelper(0x68,DISPATCH_METHOD,VT_EMPTY,NULL,parms,URL,Flags,TargetFrameName,PostData,Headers) ;
}
catch (COleDispatchException * pException)
{
CString strErrorMsg;
pException-> GetErrorMessage(strErrorMsg.GetBuffer( 256 ), 256 );
strErrorMsg.ReleaseBuffer();
AfxMessageBox(strErrorMsg);
}
catch (...)
{
CString strErrorMsg = 发生了一些错误;
AfxMessageBox(strErrorMsg);
}
解决方案

Hello:
In some computer,i call the function of InvokeHelper failed,but i don't get any error message,While in others it succeed.

 static BYTE parms[] = VTS_BSTR VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT VTS_PVARIANT ;  
try
{
  InvokeHelper(0x68, DISPATCH_METHOD, VT_EMPTY, NULL, parms, URL, Flags, TargetFrameName, PostData, Headers);
}
catch (COleDispatchException* pException)
{
   CString strErrorMsg;
   pException->GetErrorMessage(strErrorMsg.GetBuffer(256), 256);
   strErrorMsg.ReleaseBuffer();
   AfxMessageBox(strErrorMsg);
}
catch(...)
{
  CString strErrorMsg = "some error has happened";
  AfxMessageBox(strErrorMsg);
}
解决方案


这篇关于如何捕获InvokeHelper的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 05:02