Martin Trump
2003-08-22 19:12:59 UTC
Hi, I would like to know if there is a way to create run-time
variables. For example,
for I = 1 to 10
dim "team" & I
next I
Tim, maybe side step the problem with (untested code):-variables. For example,
for I = 1 to 10
dim "team" & I
next I
Dim x(0) (As whatever)
Then in your program, repeatedly
Redim (Preserve) x(Ubound(x) + 1)
Gives you an unlimited number of variables x().
Just a guess.
HTH.
--
Martin Trump
Martin Trump