>How to assign values to a 2 dimensional array using only few lines of codes?
From what background you come to vbs? Had you asked the same question ever in any other language? How few is few enough?! Even if it is few enough, does it meet the need which is manifold in principle?!
[tt]
dim a(5,5)
for i=0 to ubound(a,1)
for j=0 to ubound(a,2)
a(i,j)=i+j
next
next[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.