I have a combobox that has it's "DroppedDown" property set to true. The Event that I am using is the default event (SelectedIndexChanged) that's used when you double-click on the control to get into design mode.

I wish for the user to be able to use the arrow keys to scroll thru the combobox data elements and then make a selection to continue processing.

Currently, the user cannot do this because of the "SelectedIndexChanged" event. What event should I use that will allow the user to scroll using the arrow keys? I'm thinking the "Leave" event and "Click" events.

Thanks,