Ola,
I have a treeview with a couple of rows + cells. How do I loop through the treeview so it creates the XML.
so it should create a new within the xml for each row.Code:<myxml> <name><%=mytreeview.cells(1).text %></name> <description>A fixed description</description> <myval> <values><%=mytreeview.cells(2).text & ", " & <%=mytreeview.cells(3).text %></values> </myval> </myxml>
I hope someone understands what I'm trying to do.Code:<myxml> <name>bla</name> <description>A fixed description</description> <myval> <values>bla, bla</values> </myval> </myxml>
Thanks in advance.





Reply With Quote