|
-
Nov 25th, 2000, 02:53 PM
#1
Junior Member
Actually you WILL lose data preforming a re-dimension this way. The proper way to re-dim an array follows :
Dim x() as string
Dim counter as long
for counter = 0 to 100
redim preserve x(counter)
x(Counter) = cstr(Counter) '(or whatever value you want)
next counter
Hope this helps.....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|