Click here to Skip to main content
15,881,812 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to display the data from an xmlfile in Vb.net ??
Posted

1 solution

There is information on how to do that here[^]
 
Share this answer
 
Comments
virajdaw 10-Feb-13 8:30am    
hello, the code displayed is :

Imports System.Xml

Imports System.Data

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim xmlFile As XmlReader

xmlFile = XmlReader.Create("Product.xml", New XmlReaderSettings())

Dim ds As New DataSet

ds.ReadXml(xmlFile)

DataGridView1.DataSource = ds.Tables(0)

End Sub

End Class

The problem is that it is only displaying the table , how to display all data within the table??
CHill60 10-Feb-13 12:39pm    
Not sure what you mean ... I've got a sample xml file with 2 sub-nodes within each node and they are being displayed correctly in the dataGridView as extra columns. If I have attributes on the nodes they are also being displayed in a separate column

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900