I'm not sure about enabling and disabling individual item and doubt its even supported but You can check and uncheck programatically using this function:
checkedListBox1.SetItemChecked(index, true); // Check
checkedListBox1.SetItemChecked(index, false); // Uncheck
Best Regards,
|