Dim and Redim
Oct 19, 2007 20:30:14 GMT -5
Post by turbov21 on Oct 19, 2007 20:30:14 GMT -5
Can you declare an array using variables?
x = 100
dim list$(x)x = 100
dim list$(x)
x = 100
dim list$(x)
For i = 1 to 100
list$(i) = Str$(Int(Rnd(1) * 100) + 1)
Print list$(i)
Next i
End