T
Tim Eaden
I use for next loops to write data to an array in vb6
dim j as int
dim data(10) as string
for j = 1 to 10
data(j)= function.whatever(j)
next
I cant get this to work with vb.net
How do I create and address elements in an array like
above
Any help much appreciated
TIM
dim j as int
dim data(10) as string
for j = 1 to 10
data(j)= function.whatever(j)
next
I cant get this to work with vb.net
How do I create and address elements in an array like
above
Any help much appreciated
TIM