XML Question

Hi there there are severals ways to do that.
one way is to load the xml file into an dataset. THen you can access every row or column tha way you would in a database.
example:
[csharp]
DataSet YourDataSet = new DataSet();
dtsImportSet.ReadXml("yourXMLFile.xml");
cboBox.Items.Add(YourDataSet.Tables[0].Rows["columnName"].ToString());
[/csharp]

Hope that helps.
 
Back
Top