Hi I have an array such as ARRNYT(15)
after it has been filled and the table has been updated with the current record I need to clear the ARRNYT out, so it can start over again. How do I do that?
Thanks
Zishan
Looks like your array is fixed-size, so [tt]Erase[/tt] won't turn & bite. But, in the future, if you're using dynamic arrays & clear them with [tt]Erase[/tt], it also releases the allocated memory for the array itself; you'll have to do a [tt]ReDim[/tt] to reset the dimensions before you can reload it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.