errorCode Property1

 

Contains the error code of the last parse error.

Script Syntax

lValue = oXMLDOMParseError.errorCode;  

Example

The following script example attempts to load an XML document. If it encounters a parse error, it displays the error code.

var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.3.0");
xmlDoc.async = false;
xmlDoc.load("books.xml");
if (xmlDoc.parseError.errorCode != 0) {
   WScript.Echo(xmlDoc.parseError.errorCode);
} else {
   WScript.Echo(xmlDoc.documentElement.xml);
}

Visual Basic Syntax

lValue = oXMLDOMParseError.errorCode  

C/C++ Syntax

HRESULT get_errorCode(  
    long *errorCode);  

Parameters

errorCode[out, retval]
The error code returned in a decimal value.

C/C++ Return Values

S_OK
The value returned if successful.

S_FALSE
The value returned if no error occurred.

Remarks

Long integer. The property is read-only. It returns the error code in decimal.

Versioning

Implemented in: MSXML 3.0, MSXML 6.0

Applies to

IXMLDOMParseError