reading XML

tesseract

Member
Joined
Jul 3, 2008
Messages
13
Programming Experience
3-5
basicly i want to convert all the nodes in my xml file to a treeview like this

VB.NET:
<root>
<node1>stuff</node1>
<node2>morestuff</node2>
</root>

to

VB.NET:
root
|
+---node1
+---node2
 
Back
Top