|
-
Apr 3rd, 2017, 10:46 AM
#4
Re: Problem Editing Text File
 Originally Posted by Cow124
The error happens at this time:
Code:
lines.count = 109517
line = 109517
Changing the for loop to : 0 to 109516 solves the problem, but in the future, how should I approach this?
Thanks
Collections are zero indexed based, so the first element is at index 0,
For line = 0 To
,and the last element is equal to the count minus one,
For line = 0 To (lines.Count - 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
|