Stop SelectedIndexChanged from Firing on Form Load Event
If you are using SelectedIndexChanged in your ComboBox may be you encounter a problem with events being fired even if you did not click the ComboBox.
This happens when you open and close your Windows Form. The workaround for this is to use RemoveHandler statement.
Here’s an example:
- Read more about Stop SelectedIndexChanged from Firing on Form Load Event
- 1 comment
- Log in or register to post comments
- 309 views