A
aarrgghh765
Hi,
I'm using a counter to iterate through the CheckBox controls on my form
to set properties.
For i = 1 To 48
Me.Controls("X" & i.ToString).Enabled = False
Next
My question is; why can't I set the CheckState in this way like
For i = 1 To 48
Me.Controls("X" & i.ToString).CheckState =
CheckState.Checked
Next
Thanks.
I'm using a counter to iterate through the CheckBox controls on my form
to set properties.
For i = 1 To 48
Me.Controls("X" & i.ToString).Enabled = False
Next
My question is; why can't I set the CheckState in this way like
For i = 1 To 48
Me.Controls("X" & i.ToString).CheckState =
CheckState.Checked
Next
Thanks.