J
Jack
why does this stament generate an error if
Checkbox_1 through 5 : exist
Dim i As Integer
For i = 1 To 5
Controls("Checkbox_" & CStr(i)), Object).BackColor = Color.Black
Next
The error are
Property access must assign to the property or use its value.
and
End of statement expected.
Checkbox_1 through 5 : exist
Dim i As Integer
For i = 1 To 5
Controls("Checkbox_" & CStr(i)), Object).BackColor = Color.Black
Next
The error are
Property access must assign to the property or use its value.
and
End of statement expected.