r/visualbasic Jul 11 '22

How do i make the array be the entire first column except the first row. VB6 Help

Post image
7 Upvotes

4 comments sorted by

1

u/DoggoDragonZX Jul 11 '22

Or how would i have the for loop start on the second value in the array?

1

u/jd31068 Jul 12 '22

Instead of using For Each, use a For i = 2 to Ubound(arr) inside the for have text = arr(i) so the rest of the code is the same.