What does it mean when you have a variable with parens? Like declaring v() as Variant, and then using the variable v with another variable it seems right
beside it, like v(i)? Can anyone help?
Printable View
What does it mean when you have a variable with parens? Like declaring v() as Variant, and then using the variable v with another variable it seems right
beside it, like v(i)? Can anyone help?
It means that v is an array - basically a list of values instead of a single value (as you would have normally).
There is a thread in the Classic VB FAQ (link in my sig) that has a good explanation of arrays.