dovresti avere la collection Controls nella quale controllare, qualcosa del tipo:
Dim aControl As Windows.Forms.Control
For Each aControl In Me.Controls
If aControl.GetType Is GetType(Windows.Forms.CheckBox) Then
End If
Next
dovresti avere la collection Controls nella quale controllare, qualcosa del tipo:
Dim aControl As Windows.Forms.Control
For Each aControl In Me.Controls
If aControl.GetType Is GetType(Windows.Forms.CheckBox) Then
End If
Next
Ans.