ISupportErrorInfo - thread resurrection 
Author Message
 ISupportErrorInfo - thread resurrection

Sorry for resurfacing this subject, but I think the old thread has already
been buried.

Basically all of my classes use OLEDB. Meaning that the functions use
accessories and stuff. Now an example:

STDMETHODIMP CHierarchy2::Load(long root,...) {

        //testing here
        CEntError::Instance().setError(L"does vb get this?");
        return -244154534;

Quote:
}

This works fine. In vb err.description = "does vb get this?" Unfortunately
that was only a test scenario meaning in that in my real code the function
implementation is not that trivial. Keeping this in mind, revisited
implementation:

STDMETHODIMP CHierarchy2::Load(long root...) {

    //OLEDB code here... as well as some object logic code.
    ....
    ....
    ....
    ....
    //end

    //once finish try to set and return an error just for testing purposes,
even though the code (omitted) above was succesfully executed.
    CEntError::Instance().setError(L"does vb get this?");
    return -244154534;

Quote:
}

Now vb gives me this: err.description = "Automation error"

What gives? Is OLEDB calling SetErrorInfo and resetting it or what? Any
ideas?

Thank you,
Sami



Sat, 02 Apr 2005 19:53:11 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. ISupportErrorInfo question

2. ISupportErrorInfo Example

3. ISupportErrorInfo problems

4. How to work with ISupportErrorInfo ?

5. ISupportErrorInfo and VB

6. ISupportErrorInfo (manually)

7. help ISupportErrorInfo used on DLL runnig on server

8. ISupportErrorInfo Issue

9. ISupportErrorInfo with MTS

10. ISupportErrorInfo with MTS

11. implementing IErrorInfo and ISupportErrorInfo interfaces

12. ISupportErrorInfo question.

 

 
Powered by phpBB® Forum Software