hello again
just wondering how to create variable names that contain a variable
example
var1
var2
var3
var4
how would you create these names on the fly if the number was a variable?
J
i was thinking something like
dim i as integer = 0
For i = 1 To 10
dim var+(i) as string = "new variable"
next


Reply With Quote