An object-oriented programming language developed by Microsoft that can be used in .NET.
You can also use Microsoft XML
'Add reference To "Microsoft XML v6.0"
At beginning
Imports MSXML2
Test with XML file
Dim dom As DOMDocument60 = New DOMDocument60()
Dim bRet As Boolean = dom.load("E:\Test.xml")
If bRet Then
Dim nodes As IXMLDOMNodeList = dom.childNodes
For i = 0 To nodes.length - 1
Dim node As IXMLDOMNode = nodes(i)
ProcessNode(node)
Next
End If
Utility function, cannot post here (to be improved, I just did a quick test with 2 XML files...) : ProcessNode