Hi,
My problem in brief :
I can assign
to an array variable only if I declare the array variable like this.
If I declare the variable as below, assigning
to arrRecords won't work.
On the other hand, if I need to use
the above points must be vice versa.
My question is, what if I need to 'ReDim Preserve' after I assign the result of getRows function to the same array ? Is it allowed ? If not what could be the alternative ?
Please help.
Thank you,
RR.
__________________________________
The best is yet to come.
My problem in brief :
I can assign
Code:
rs.GetRows
Code:
Dim arrRecords
If I declare the variable as below, assigning
Code:
rs.GetRows
Code:
Dim arrRecords()
On the other hand, if I need to use
Code:
ReDim Preserve arrRecords(100,100)
My question is, what if I need to 'ReDim Preserve' after I assign the result of getRows function to the same array ? Is it allowed ? If not what could be the alternative ?
Please help.
Thank you,
RR.
__________________________________
The best is yet to come.