VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

How do you destroy your data array ?

Ekapop Tec.  (2 Submissions)   Miscellaneous   VB 6.0   Unknown Difficulty   Wed 7th July 2004   Mon 8th February 2021

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.



Rate How do you destroy your data array ? (1(1 Vote))
How do you destroy your data array ?.bas

How do you destroy your data array ? Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters