K
Katrina
I purposely number my text boxes and button in a
sequential manner so that I could call them out more
easily. There are many times in the code where I have to
do the same thing to text1 through text12.
I would like to be able to count numbers and say something
to the effect of:
number = 1
For number = 1 to 12 do
me."text"&number.visible = true
next number
But I keep getting errors when i try to do this. I don't
care if I use the do loop, I just want to avoid having to
have 12 lines of code for each instance... Any suggestions?
sequential manner so that I could call them out more
easily. There are many times in the code where I have to
do the same thing to text1 through text12.
I would like to be able to count numbers and say something
to the effect of:
number = 1
For number = 1 to 12 do
me."text"&number.visible = true
next number
But I keep getting errors when i try to do this. I don't
care if I use the do loop, I just want to avoid having to
have 12 lines of code for each instance... Any suggestions?