Only just started with VB.Net.....
What is the event I use in .Net to invoke some code when the value in a combobox has changed?
Thanks
Ian
Printable View
Only just started with VB.Net.....
What is the event I use in .Net to invoke some code when the value in a combobox has changed?
Thanks
Ian
VB Code:
Private Sub ComboBox11_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox11.SelectedIndexChanged End Sub
Thanks for that!
I had tried using that but it seemed to take a long time to kick in whereas a button click was immediate. Any clues?
Thanks
Ian