Combo Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a combo box which i have loaded with data, im trying to find out what
event is fired do that when a user selects from the dropdown list i can use
that data for a search function
 
Peter Newman said:
i have a combo box which i have loaded with data, im trying to find out what
event is fired do that when a user selects from the dropdown list i can use
that data for a search function

SelectedValueChanged and SelectedIndexChanged fire (in that order) when a
value is selected from the list.
 
Back
Top