Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do you set a array to null 1

Status
Not open for further replies.

pujas

Programmer
Feb 2, 2005
22
0
0
US
I have a golbal array
Dim FolderArray(10000) As String
Dim FileArray(100000) As String

I am putting some values in them in a function and at the end of the fucntion i want to undef them so that they have no values.

How do you do the same in VB

I tried

set FolderArray = NULL

but it did not work
 
Erase FolderArray

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Thanks. This is exactly what i needed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top