I have checkedlistbox control and checkOnClick property is set to false. Question is: when user select one item in checkedlistbox how to determine is selectedItem checked or not?
regard j
Printable View
I have checkedlistbox control and checkOnClick property is set to false. Question is: when user select one item in checkedlistbox how to determine is selectedItem checked or not?
regard j
You could see if it's in CheckedListBox.CheckedItems ...
If checkedListBox1.CheckedItems.Contains(checkedListBox1.SelectedItem) = False Then
(SelectedItem may need to be converted to string first...)