Thread Split - http://www.daniweb.com/forums/thread162300.html

What are you trying to load from? If you're trying to load the values from a database or an XML file, then you can use Databinding to bind the combobox to a data source, where you've added all of the choices in advance.

I'm trying to do this from XML exactly, any elaboration for this possible.
~Thanks

DataSet has simple and straightforward method.

DataSet ds=new DataSet();
ds.ReadXml("file.xml");
....

Use DataSource method to populates combobox control.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.