In Checklistbox , how can I show the checked items only by clicking Button1 ? , and the opposit (the unchecked)
Please provide the 2 codes which do each one
Thanx
Printable View
In Checklistbox , how can I show the checked items only by clicking Button1 ? , and the opposit (the unchecked)
Please provide the 2 codes which do each one
Thanx
For checkedListItems :
VB Code:
For Each s As String In Me.CheckedListBox1.CheckedItems MessageBox.Show(s) Next