I have two drop down boxes in my program. When you select an item from the first drop down, it populates select-able items in the second. When I select something in the second and then change the selection in the first one, the values remain in the second. How do I “reset” the second drop down when the first is changed?
Any help would be awesome!
The drop down is in a windows form.
You have to reset the comboxBox items collection before adding the new items :
Hope that helps.