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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating an array

Status
Not open for further replies.

striker73

MIS
Jun 7, 2001
376
US
What is the code to create and manipulate an array? Thanks!
 
There is good coverage in Help.

you should be looking for

Dim MyArray() As String
ReDim MyArray(2)
MyArray(1) = "fred"
Redim Preserve MyArray(15)

for example Sandy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top