I have a COM object written in C#. Under some circumstances, the COM object may throw an Exception with a descriptive message if it encounters an error (for example throw new Exception("error message")
).
This COM object is called from VB6 code and from C++ code.
From the VB6 code, I can retrieve the error message using Err.Message
.
In C++, I get an HRESULT 0x80131500 as specified in the System.Exception documentation.
Once I have this HRESULT in C++, how can I get the error message of the Exception (Exception.Message
) like the message returned by Err.Message
in VB6?
I searched the web and found a few examples using FormatMessage
and _com_error
, but none of these return the message I want.