Im very new to VB and I'm simply trying to declare a
dynamic array. That is, I'm retrieving data from DB with
set rs = cnn.execute(query).
I want to go through every recordset and add the content to
an array. Is there a way to get the size of rs?
If not I tried to declare a dynamic array as:
dim Messages() as String
but here I get 'expected end of statement' error. Why?
How can I add messages to my array?
Thanks for help
dynamic array. That is, I'm retrieving data from DB with
set rs = cnn.execute(query).
I want to go through every recordset and add the content to
an array. Is there a way to get the size of rs?
If not I tried to declare a dynamic array as:
dim Messages() as String
but here I get 'expected end of statement' error. Why?
How can I add messages to my array?
Thanks for help