ckecked listbox

  • Thread starter Thread starter Hrvoje Voda
  • Start date Start date
H

Hrvoje Voda

I'm using checked listbox to show items.
I would like to prevent selecting more then one value.
So, when a user want to check another item i want to unchecked the other.

Hrcko
 
HI,

dllhell said:
simple listbox will be just fine :)

I don;t thikn so, RadioButtons repreesnt a mutually exclusive list of
options, the user expect that only one can be selected at a time. Both
checkboxes and listbox represent a list of one or more options.


IMO you should always follow the expected behavior of the controls.
 
Hrvoje said:
I'm using checked listbox to show items.
I would like to prevent selecting more then one value.
So, when a user want to check another item i want to unchecked the other.

Hrcko

Why don't you just use a regular listBox with the SelectionMode set to
"One". You don't need a checked listbox at all.
 
Back
Top