I have a drop down list whose4 datasoruce is already set, I need to add an extra item, in webapplications it’s easy, using Items.Insert(index, newItem). but in windows applications it is not working, any body can help!
Note: I need to add the items without affecting the datasource at all
thanks
If your DataSource doesn’t have an Add method. You will have to either create your own DataSource (
List<...>) or add item iteratively.