I have a listbox with checkboxes, how do I check the checkbox of the selecteditem?
Thanks
I have a listbox with checkboxes, how do I check the checkbox of the selecteditem?
Thanks
Assuming Windows Forms, clb.SetItemChecked(clb.SelectedIndex,true) where clb is a CheckedListBox object.