com库中_com_issue_errorex用_com_error异常捕获


It throws a _com_error object. 
Further, you can catch it as follows: 

   try
   {
      // ... 
   }
   catch(_com_error& e)
   {
      // ...
   }

inline void TESTHR(HRESULT x) { if FAILED(x) _com_issue_error(x); };


CString current = "";


    
    
    
    
try
    
    
    
    
{
    
    
    
    
// 你的ADO代码
    
    
    
    
}
    
    
    
    
catch (_com_error & e)
    
    
    
    
{
    
    
    
    
AfxMessageBox(e.Description());
    
    
    
    
}

你可能感兴趣的:(_)