First off, sorry if this is something that has been answered somewhere on the forum. I've been poking around for a while and have come up empty. My brain also is not wanting to wrap around an issue I'm having. I've got a large number of XML data that I have to parse in order to pull out specific bits of info from each. I can't seem to figure out the code to get the child nodes I need (my XML lingo is a little fuzzy too)
Here is an example of the XML I'm trying to read:
<?xml ver
When you use selectNodes then you get all nodes Elements which fits your XPath , but not nodes inisde the XPath.
So you get exactly one node
<licensed_software>
To go deeper you should check childs nodes
Try to read here:
https://msdn.microsoft.com/en-us/library/ms763798(v=vs.85).aspx
And here is your working example:
_Example()
Func _Example()
; Error monitoring. This will trap all COM errors while alive.
; This