Hi,
VB6 allows me to increase the size of an array as required to load data...

REDIM myarray(UBOUND +1)

And I can use PRESERVE to prevent array contents from being loss. In C++...

How do I detect upper boundary of an array?
How do I dynamically increase the size of the array?
How do I preserve the data in the array?

Regards,
ChuckB