PDA

Click to See Complete Forum and Search --> : Combo Box events..


iandarbyshire
Aug 22nd, 2002, 03:26 AM
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

jkw119
Aug 22nd, 2002, 08:00 AM
Private Sub ComboBox11_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox11.SelectedIndexChanged

End Sub

iandarbyshire
Aug 22nd, 2002, 08:19 AM
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