SelectedIndexChanged and SelectedValueChanged don't get fired when using the space key

  • Thread starter Thread starter bbiltkravitz
  • Start date Start date
B

bbiltkravitz

If one uses the SPACE key to change the value in a CheckedListBox
neither of the events: SelectedIndexChanged/SelectedValueChanged get
fired.

Anybody have a work-around for this?

Thanks
 
Why should they get fired? Pressing space doesn't change the currently
selected index or value, it only changes the checkstate of the selected
item.

I would expect the ItemCheck event to fire though. Maybe that's what you're
looking for

/claes
 
Back
Top