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!

Hi,

You should do it this way:

For Each chkbox As CheckBox In gboSysGroup_AccessRights.Controls
                If TypeOf chkbox Is CheckBox Then

If chkbox.Checked = True Then
Cbx.Items.Add(chkbox.Name.ToString)
End If
End If

Next

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.