SalOleErrorInfo
Namespace: PPJ.Runtime.Com
Assembly: PPJ.Runtime.50 (5.0.0.0)
Stores OLE error codes, descriptive text, and help information in SAL-compatible fields.
- C#
- VB.NET
public class SalOleErrorInfo : SalFunctionalClass
Public Class SalOleErrorInfo
Inherits SalFunctionalClass
This mutable record does not retrieve an error automatically. Numeric fields start at zero and text fields start as empty strings.
Example:
var error = new PPJ.Runtime.Com.SalOleErrorInfo();
error.source = "Customer Import";
error.description = "The OLE operation failed.";
string description = error.description;
Constructors
SalOleErrorInfo()
Initializes a new instance of SalOleErrorInfo.
Fields
| Name | Type | Description | Value |
|---|---|---|---|
| description | SalString | The human-readable error description. | |
| helpContext | SalNumber | The help topic context identifier within the help file. | |
| helpFile | SalString | The help file associated with the error. | |
| scode | SalNumber | The OLE status code associated with the error. | |
| source | SalString | The name of the component or application reporting the error. | |
| wcode | SalNumber | The application-defined OLE error code. |