views:

2332

answers:

2

I have a listbox with checkboxes, how do I check the checkbox of the selecteditem?

Thanks

+3  A: 

Assuming Windows Forms, clb.SetItemChecked(clb.SelectedIndex,true) where clb is a CheckedListBox object.

jeffm
A: 

Awesome, thanks