Hey Guys I created some Checkboxed dynamicly and now I want to set their value to False. My Problem is I can't access them because the Name is not stated.
I created them this way:
For j = 0 To column - 1
For i = 0 To row - 1
MyCheckboxes(counter) = New CheckBox
MyCheckboxes(counter).Visible = True
MyCheckboxes(counter).Checked = True
MyCheckboxes(counter).Text = ""
MyCheckboxes(counter).Size = New Size(15, 14)
MyCheckboxes(counter).Name = "Check" + counter.ToString
Me.Controls.Add(MyCheckboxes(counter))
MyCheckboxes(counter).Location = New Point(Xpos, Ypos)
Xpos = Xpos + 20
counter = counter + 1
Next i
Ypos = Ypos + 20
Xpos = 160
Next j
into a global array
Public MyCheckboxes() As System.Windows.Forms.CheckBox
Now I want to set the values to False in a Button on click event:
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim i As Integer = 0
Me.Controls("Check" & i).Checked = False 'Here it says: Checked is not a Member of 'System.Windows.Forms.Control'
CheckBox0.Checked = False ' Here it says CheckBox0 is not declared. It may be inaccessible due to its protection level.
End Sub
I dont know what I am doing wrong I searched for a reason for nearly 3 hours. Please help me Cheers