Hi Expert,
But, in this case I will not know anything about this xml file, I just want to read everything, including all child nodes and get the name and value from each node.
Dim xml As New XmlDocument
xml.Load(myxml.xml)
For Each node As XmlNode In xml.DocumentElement.SelectNodes("*")
MsgBox(node.Name)
Next
Since i don't know dept or anything, i don't know how I will do this. And every solution I find is based by knowing element names.
Thanks in advance.
http://vb.net-informations.com/xml/open-xml-vb.net.htm
Patter