Arrays
-
Hi can any one help me? I have got a varible length array and need to find out its length. The way I have made the array is dim Array() as string Redim Array(Varible) Thanks for any help on this.
-
Hi can any one help me? I have got a varible length array and need to find out its length. The way I have made the array is dim Array() as string Redim Array(Varible) Thanks for any help on this.
-
By length, do you mean how many items it contains or the total number of all characters in all items in the array?
I mean the total number of items in the array Thanks
-
By length, do you mean how many items it contains or the total number of all characters in all items in the array?
-
Hi can any one help me? I have got a varible length array and need to find out its length. The way I have made the array is dim Array() as string Redim Array(Varible) Thanks for any help on this.
you defined your array by redim. In there you assigned the size by using the variable. I would check the variable to get the size of the array note that indexing starts at 0, so if you assign 5 to the variable, the size of the array is 6. So in general: The size of your array is "variable+1". I hope I did not missinterpret your question! :) Stephan.