I know how to do this in web applications, but I am having a hard time doing this in a windows application. Here is my code below.
What I am missing here?
Code:
For Each ctrl In Me.Controls
If TypeOf (ctrl) Is CheckBox Then
ctrl.
End If
Next
Comment