I have a set of unbound text boxes numbered 181 thru 205, I'm trying to fill with the following code.
cntBox is declared as an integer.
This, of course, doesn't work.
How can this be done?
Bill
Code:
cnt01 = 0
cntBox = 181
Do While cnt01 < cntRes
Me.Text(cntBox).BackColor = lngRed
Me.Text(cntBox).ForeColor = lngRed
cntBox = cntBox + 1
cnt01 = cnt01 + 1
Loop
This, of course, doesn't work.
How can this be done?
Bill