Reputation: 22104
I would like to capture the event when user changes value of ComboBox by typing.
The SelectedIndexChanged
only works if user chooses an option from drop down value, what about when ComboBox text is changed by typing.
Upvotes: 2
Views: 5355
Reputation: 3751
The TextChanged event will work for you
ComboBox1_TextChanged(Object sender, EventArgs e)
Upvotes: 3