I have a list box with three items in it. This has been disabled and I want to enable a button if all three are checked, i was looking for a CheckedChange type event in the MSDN but could not find anything.
How can I do something like this?
Printable View
I have a list box with three items in it. This has been disabled and I want to enable a button if all three are checked, i was looking for a CheckedChange type event in the MSDN but could not find anything.
How can I do something like this?
Hi,
You can try something like this:
Code:For i = 0 to CheckListBox1.Items.Count- 1
If CheckListBox1.Checked(i) = True then
Button1.Enabled = True
End If
Next