Using Dinamic array

  • Thread starter Thread starter Oded Kovach
  • Start date Start date
O

Oded Kovach

Hello there

I have some data that i need to use dinamic array for using it

I've discovered that i can use UBound function to know the size of my array.

But the problem is on the start point when i declare it. Then the ubound
function gives me an error of out of range when i try to diterme the size of
my array (which is 0 in this case) is there another way to diterme wether
the dinamic array have allocation and not?
 
-----Original Message-----
Hello there

I have some data that i need to use dinamic array for using it

I've discovered that i can use UBound function to know the size of my array.

But the problem is on the start point when i declare it. Then the ubound
function gives me an error of out of range when i try to diterme the size of
my array (which is 0 in this case) is there another way to diterme wether
the dinamic array have allocation and not?


.
When exactly do you use ubound?

dim myarray() as string 'declaring
redim myarray(3) as string 'initialising array
msgbox ubound(myarray)
 
Back
Top