Software Development Network>> Visual Basic>> How do I get data from an XML file in VB.NET Express 2005?
i have the same problems, i wanna read and write XML file! what would i do needs "Imports System.Xml... or .." ,but i can't find it.please help!
How do I get data from an XML file in VB.NET Express 2005?
TheViewMaster
i have the same problems, i wanna read and write XML file! what would i do
needs "Imports System.Xml... or .." ,but i can't find it.
please help!
Chris R Jones
Dim myDataSet As System.Data.DataSet
myDataSet.ReadXml("c:\xmlfiles\xmlfile.xml")
TextBox1.Text = myDataSet.Tables(0).Rows(0)("FirstColumnName")
Hope that helps too! System.XML is good for more complex XML files also.
S
Nate