LenaCookie
New member
- Joined
- Apr 1, 2009
- Messages
- 2
- Programming Experience
- Beginner
Hello everyone
I have a multitable (12 tables) XML file that i want to show in a table.
I tried using datagridview control but as I understood it can only show one table at a time (but I hope I'm wrong).
Dim tempDS As New DataSet
tempDS.ReadXml("myxmlfile.xml")
DataGridView1.DataSource = tempDS
DataGridView1.DataSource = tempDS.Tables(0)
This shows only the first table.
Is there any way to see the contets of the whole XML file in a table?
I have a multitable (12 tables) XML file that i want to show in a table.
I tried using datagridview control but as I understood it can only show one table at a time (but I hope I'm wrong).
Dim tempDS As New DataSet
tempDS.ReadXml("myxmlfile.xml")
DataGridView1.DataSource = tempDS
DataGridView1.DataSource = tempDS.Tables(0)
This shows only the first table.
Is there any way to see the contets of the whole XML file in a table?
Last edited: