XML to VB.net DataView???

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?
 
M

Mr. Arnold

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top