I think i might have narrowed my problem down to the array... how do i create and expand an array?
redim? right
well, is there a way i can just
Dim Array()
and then add to it without using redim?
Printable View
I think i might have narrowed my problem down to the array... how do i create and expand an array?
redim? right
well, is there a way i can just
Dim Array()
and then add to it without using redim?
No, that will not work. You have to use redim, or you can just use an ArrayList to dynamically add and remove elements.
When i redim, it add keeps all my old data, right?
You have to use Redim preserve to keep the old stuff