CheckBoxList how to tell the last item selected?????

  • Thread starter Thread starter SD
  • Start date Start date
S

SD

Hello,

I'm banging my head against the wall on this issue. How can you tell which
checkbox was the last one clicked by the user?

..SelectedIndex simply returns the lowest ordinal value of thos checkboxes
selected.

I need to have this becaue I would lilke to clear all but one checkmark at
anyone time. There's got to be a way right

- Sd
 
You might want to consider using radio buttons if only one checkbox can be
selected at a time in the list.
 
* "SD said:
I'm banging my head against the wall on this issue. How can you tell which
checkbox was the last one clicked by the user?

.SelectedIndex simply returns the lowest ordinal value of thos checkboxes
selected.

I need to have this becaue I would lilke to clear all but one checkmark at
anyone time. There's got to be a way right

I would consider to use a group of option buttons or a combobox
instead of the checkedlistbox.
 
Back
Top