|
|
|
IErrorInfo Interface |
|
IID_IErrorInfo |
{1CF2B120-547D-101B-8E65-08002B2BD119} |
|
The IErrorInfo interface provides detailed contextual error information.
|
|
Methods in VTable order |
|
|
IUnknown Methods |
Description |
|
QueryInterface |
Returns pointers to supported interfaces. |
|
AddRef |
Increments reference count. |
|
Release |
Decrements reference count. |
|
IErrorInfo Methods |
Description |
|
GetGUID |
Returns the globally unique identifier (GUID) for the interface that defined the error. |
|
GetSource |
Returns the programmatic identifier (ProgID) for the class or application that returned the error. |
|
GetDescription |
Returns a textual description of the error. |
|
GetHelpFile |
Returns the path of the Help file that describes the error. |
|
GetHelpContext |
Returns the Help context identifier (ID) for the error. |
|
GetGUID |
|
FUNCTION IErrorInfo_GetGUID ( _ BYVAL pthis AS DWORD PTR _ , BYREF pguid AS GUID _
) AS LONG
|
|
GetSource |
|
FUNCTION IErrorInfo_GetSource ( _ BYVAL pthis AS DWORD PTR _ , BYREF strSource AS STRING _
) AS
LONG
strSource = ACODE$(strSource)
|
|
GetDescription |
|
FUNCTION IErrorInfo_GetDescription ( _ BYVAL pthis AS DWORD PTR _ , BYREF strDescription AS STRING _
)
AS LONG
strDescription = ACODE$(strDescription)
|
|
GetHelpFile |
|
FUNCTION IErrorInfo_GetHelpFile ( _ BYVAL pthis AS DWORD PTR _ , BYREF strHelpFile AS STRING _
)
AS LONG
strHelpFile = ACODE$(strHelpFile)
|
|
GetHelpContext |
|
FUNCTION IErrorInfo_GetHelpContext ( _ BYVAL pthis AS DWORD PTR _ , BYREF pdwHelpContext AS DWORD _
)
AS LONG
|
Page last updated on Monday, 27 March 2006 12:48:20 +0100