How to check all items in a checkedlistbox
Hi,
I'm new to VB.Net and would like to know how to check all items in a checkedlistbox.
Any help would be greatly appreciated.
Thanks
# 1 Re: How to check all items in a checkedlistbox
One quick way of doing this is as follows:
For i As Integer = 0 To CheckedListBox1.Items.Count - 1
CheckedListBox1.SetItemChecked(i, True)
Next
AdamP at 2007-11-11 21:47:57 >
