Binding an XML File

xiecsuk

Member
Joined
Apr 24, 2005
Messages
23
Location
Coventry, Warwickshire, UK
Programming Experience
10+
I have three different XML files which contain data I need to display on a Windows form. I want to load them one at a time into my VB.Net 2005 program so that I can bind them to a form. I am currently reading each into an XmlDocument object but it doesn't seem to hold the binding. Should I be using some other method - XPath or something? I also want to bind the table to the Binding Navigator to handle record scrolling.

Roger H
 
Read them into Dataset (.ReadXml method) and bind this.
 
Back
Top