How to set check/uncheck for each item of CheckedListBox?

goodmorningsky

Centurion
Joined
Aug 18, 2003
Messages
172
Hi, all.
I can set check or uncheck of item for items of CheckedListBox only when loading first time.
using this.chkBxMember.Items.Add(mi, true);
But after loading I want to uncheck 3rd item. How can i do it?
 
this.chkBxMember.SetItemCheckState(0,false);

where 0 is the index of the item whose check you want to set
 
Back
Top