array destruct

dgkindy

Registered User.
Local time
Today, 16:16
Joined
Feb 22, 2007
Messages
34
Is there a way in VB to make all data in an array null without having to loop through each item?
 
If it is not a fixed array, use the Erase statement:
Code:
[COLOR="Navy"]Erase[/COLOR] MyArray()
 

Users who are viewing this thread

Back
Top Bottom