XML to VB.net DataView???

  • Thread starter Thread starter Alan Mailer
  • Start date Start date
A

Alan Mailer

Is there a way of taking a fairly basic XML file and turning its
contents into the contents of a VB.net DataView instance?

Thanks in advance for your help?
 
Alan Mailer said:
Is there a way of taking a fairly basic XML file and turning its
contents into the contents of a VB.net DataView instance?

Thanks in advance for your help?

You can make an object, the object has Public Accessor Properties that
represent the Tag Data from your XML data, populate the object with the XML,
add each object to an Arrrylist and bind the Arraylist to the
DataView.Datasource.

That's one way you can do it.
 
Back
Top