Hello:
I am working with a 2 dimensional array of strings.
It seems that you cannot use redim preserve to change the left element of a 2 dimensional array. Does that mean I have to declare the array with the actual size, i.e. myarray(1000,1)? If so, is there a way to trim off the unused elements at the end of my procedure?
If I do this declaration (with the total size of the array), what is the function to show the actual number of rows that have values in them. It seems that .getupperbound (0) does not give the number of rows being used but the declared size. Thus I cannot use it.
I need to use an array, not an arraylist. Also, I presume I cannot bind my 2 dim. array to a listbox.
Thanks for any help.
smHaig