StrataFrame Forum

Combobox event question

http://forum.strataframe.net/Topic2064.aspx

By StarkMike - 8/2/2006

Which event should I use when the user selects one of the items from the drop down list?
By StrataFrame Team - 8/2/2006

Either SelectedIndexChanged or SelectedValueChanged... it doesn't matter which one.

The only time it will matter is when you have multiple items within the combo that have the same value... if one is selected and the user selects the other one, then the SelectedValueChanged will not fire because the value didn't change.  But since that will rarely happen, then you can really use either one.