Question How can i catch a select item in combobox?

sandovaledg

New member
Joined
Sep 27, 2011
Messages
1
Programming Experience
Beginner
I need to catch the moment when i select a item in a combobox.

what is the event?

thanks and sorry for my english
 
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
MsgBox(ComboBox1.SelectedItem)
End Sub
 
Back
Top