how to mke n array in vb6???
array
Collapse
X
-
multiple ways ....
EXAMPLES (1-Dimension)
A) Declaring array...
1) dim temp() as integer: redim temp(1 to 8)
2) dim temp(1 to 34) as integer
C) Accessing array...
temp(INDEX) = INPUT
The parenthesis indicate that the declaration is for a new array.
This is extremely basic stuff but you can make arrays much more complicated when you start adding multiple dimensions to process nested loops and indices.
Comment