Here's the deal.
I've got a form with 78 checkboxes - each with a label.
They are named chk1-chk78 and lbl1-lbl78.
I am wanting to do For Loop to change the labels back color if the check box is checked.
So basically
What goes where the ? mark is in the code?
Now I know you can do a loop with all check box controls on the form - however, there are several checkboxes which I don't want evaluated in this matter. Any ideas?
I've got a form with 78 checkboxes - each with a label.
They are named chk1-chk78 and lbl1-lbl78.
I am wanting to do For Loop to change the labels back color if the check box is checked.
So basically
Code:
For i = 1 to 78
If chk[COLOR="Red"]?[/COLOR].Value = "-1" Then
Do Stuff
Else
Do Other Stuff
End If
Next i
What goes where the ? mark is in the code?
Now I know you can do a loop with all check box controls on the form - however, there are several checkboxes which I don't want evaluated in this matter. Any ideas?