i have loaded an xml file to a dataset successfully (i can display it in a datagrid), i'd like to load it in several textboxes (about 10 or 12).
the xml has about 60 fields, and i'm not that familiar with getting their names (though i know which ones i want).
that's what i have:
Dim ds As New DataSet
ds.ReadXml(<PATH>)
a glimpse of one part of the xml:
<ide>
<cUF>35</cUF>
<cNF>623670848</cNF>
</ide>
<emit>
<CNPJ>06949571000153</CNPJ>
<xFant>TSA</xFant>
i want (example)
cUF from IDE
cFant from tsa
i've got txt1 and txt2 as textboxes, what do i do to get those?