myArray(sub1,sub2)
This array is populated during runtime so I have no idea the number of elements.
I want to loop through with double for..next to retrieve values, but cannot get the ubound of 'sub2'
- thank you
Printable View
myArray(sub1,sub2)
This array is populated during runtime so I have no idea the number of elements.
I want to loop through with double for..next to retrieve values, but cannot get the ubound of 'sub2'
- thank you
VB Code:
Debug.Print Ubound(myArray, 2)
Quote:
Originally Posted by MSDN