I have a timer control which I want to create an array of. Then at some point in my program I will need to Redim preserve that control array.

How would I do this?

Right now I have placed a timer control on my form then made a copy of it to create an array. When I try this line of code:

Code:
Redim preserve Timer1(2 to 10)
it's telling me "variable not defined", referring to the timer control.
I believe I need to create a new variable and set it equal to the Timer control array, but not sure how to code this.

?????