ComboBox double click

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

hi
I manage a double click event in a combo box..
but this event doesn't fire
????
I don't know why??
 
Check if you are handling the double click event in
Properties-->events of the combobox
 
Yes I handle it..
but this handling dosen't work..
The Click event works but Double Click dosen't work.
 
If you handle click you cant handle double click because the firing of the
click event to a handler stops the control waiting to see if there is a
second click.

Ciaran
 
I didn't handle Click event but I handle SelectedIndexChange...does this
event prevent from firing Double Click??
 
Back
Top