I think you need to enumerate through the children of each node you are enumerating
VB Code:
Dim nodelist2 As IXMLDOMNodeList For Each xNode In nodeList Set nodelist2 = xNode.childNodes For Each xNode In nodelist2 ' etc...
Off the top of my head right now I can't think of a better way, but I'm sure there is one...





Reply With Quote