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
 

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

Back
Top