Link to home
Start Free TrialLog in
Avatar of mpdalton
mpdalton

asked on

ComboBox CloseUp Event

Does anyone know how to capture the combobox closeup event ?

The DateTimePicker has one, but the combobox only seems to raise the dropdown event, not the close up event.

Any ideas how to capture it ?
Avatar of flavo
flavo
Flag of Australia image

Avatar of mpdalton
mpdalton

ASKER

thanks for the link flavo, but not really what i'm after.

i wan't to caputre the event that is raised when the combobox collapses back to its normal state. ie there is a dropdown event when the list drops down, but not a close up event when it goes back up.
ASKER CERTIFIED SOLUTION
Avatar of ptakja
ptakja
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
that works, i was using the selected value changed event before which fired when i made changes to the combobox value in code.

SelectionChangeCommitted is better, thanks.