hi i have been struggling with get node names extracted from an xml file
i want the vba code below to return all nodes as following
e.g
ParentNodeName/ChildNodeName
ParentNodeName
ParentNodeName
ParentNodeName/ChildNodeName/ChildNodeName
the xml has tuples and there are tuples within tuples. I just need the code to return all elements with parentnode name in front of it.
Tried playing around with the following code but with no luck. Can someone please advise?
xmlExportDoc = "c:\myDoc.xml"
Dim xmldoc As MSXML2.DOMDocument
Dim xmlNode As MSXML2.IXMLDOMNode
Dim xmlNodeList As MSXML2.IXMLDOMNodeList
Dim myNode As MSXML2.IXMLDOMNode
Set xmldoc = New MSXML2.DOMDocument
xmldoc.async = False
xmldoc.Load (xmlExportDoc)
Set xmlNodeList = xmldoc.getElementsByTagName("*")
On Error Resume Next
For Each xmlNode In xmlNodeList
For Each myNode In xmlNode.ChildNodes
Debug.Print myNode.ParentNode.nodeName & "/" & mynode.nodeName
Next myNode
Debug.Print mynode.nodeName
Next xmlNode
Set xmldoc = Nothing
Bookmarks