Hello experts
I have a simple problem but im not able to figure it out. I have a simple XML file and Im using DataGridView in VB.NET 2005. I want to load the XML fie data in DataGridView. But its does not load. I need your help urgently. Below is my xml file and CODe
PLEASE HELP!!!
I have a simple problem but im not able to figure it out. I have a simple XML file and Im using DataGridView in VB.NET 2005. I want to load the XML fie data in DataGridView. But its does not load. I need your help urgently. Below is my xml file and CODe
VB.NET:
<xml>
<node id=1>
<name>myname</name>
<place>country</place>
</node>
</xml>
VB.NET:
Dim ds As New DataSet
ds.ReadXml("C:\docs\atms.xml")
grid1.DataSource = ds
Last edited by a moderator: