|
-
Jan 15th, 2013, 08:59 AM
#4
Re: Parallel Arrays: For loop error
You are trying to loop through an array, by starting at 0 and going up to the number of items. You are getting the number of items, and then trying to use that to get a specific item (the last one) from the array itself, you just need the number of items. I can easily give you the code, but I have given you everything you need to solve it yourself .
Here are some examples:
For intProfLoop As Integer = 0 To UBound(intProfileLinks) - 1
For intIndex As Integer = 0 To intBaseFolderRefs.Length - 1
Tags for this Thread
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
|