i need to get data from checkbox in a groupbox. in the groupbox, it also have a label. so my coding as below
For Each chkbox As CheckBox In gboSysGroup_AccessRights.Controls
If TypeOf chkbox Is CheckBox Then
If chkbox.Checked = True Then
Cbx.Add(chkbox.Name.ToString)
End If
End If
Next
so when it go thru label, it should skip an continue on the checkbox rite? i keep got this error 'Unable to cast object of type 'System.Windows.Forms.Label' to type 'System.Windows.Form'
please help. thank u!