How do you destroy your data array ?
API Declarations
'This example uses the Erase statement to reinitialize the elements of fixed-'size arrays and deallocate dynamic-array storage space.
' If you've any suggestion or your thinking about this coding, please e-mail to me, thank you.
' Note: This code from the MSDN document
'
' Declare array variables.
Dim NumArray(10) As Integer ' Integer array.
Dim StrVarArray(10) As String ' Variable-string array.
Dim StrFixArray(10) As String * 10 ' Fixed-string array.
Dim VarArray(10) As Variant ' Variant array.
Dim DynamicArray() As Integer ' Dynamic array.
ReDim DynamicArray(10) ' Allocate storage space.