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]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.