How to read XML into strongly typed dataset?

  • Thread starter Thread starter Tee
  • Start date Start date
T

Tee

Hi,

I have an XML file with data, and I have created a .XSD with an element. How
do I read XML into the designed element?


Thanks,
Tee
 
Tee,

When your XML datasetfile is correct than it should be not more than

dim ds as myStronglyCreatedDataset
ds.readXML("PathFromTheXMLFile")

You can check your XML file by opening that in your VBNet IDE.
You can than as well build directly a strongly typed dataset from that by
right clicking

I hope this helps

Cor
 
Back
Top