The XMLDOMNode object extends the core XML DOM node interface with support for data types, namespaces, DTDs, and schemas.
Members
Example
The following example creates an XMLDOMNode object, currNode, and displays its XML:
Dim xmlDoc Dim currNode Set xmlDoc = CreateObject("microsoft.xmldom") xmlDoc.async = false xmlDoc.load("c:\books.xml") Set currNode = xmlDoc.documentElement.childNodes.item(1) MsgBox currNode.xml
See Also