XML to VB.net DataView???

XML to VB.net DataView???

am 27.10.2007 05:41:03 von 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?

Re: XML to VB.net DataView???

am 27.10.2007 07:01:30 von MR. Arnold

"Alan Mailer" wrote in message
news:nnc5i3h8eka2f3gbs39feqd6s21oaq0qvh@4ax.com...
> 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.