Checking a CheckedListBox item without selecting it...

  • Thread starter Thread starter Tamir Gal
  • Start date Start date
T

Tamir Gal

Hi,

I'm using the CheckedListBox control, and I'm wondering if there is a
way to let the user check an item in the list without also selecting
it...

Any ideas?

Thanks in advance,
Tamir.
 
Do you mean you don't want them to have to click once to select then
click a second time to check it? See the property: CheckOnClick

If you want to make sure that an item is never selected, I guess you
could get a handle to the SelectedIndexChanged event and undo any
changes the user did.

mike
 
Back
Top