J
Joe
This is probably really simple... (I'm not a vb programmer)
I have a For loop I want to restart from within the loop.
For i = 0 To myarray.Length - 1
....
....
If something Then
myarray = a new array
i = 0
End If
Next
I have a For loop I want to restart from within the loop.
For i = 0 To myarray.Length - 1
....
....
If something Then
myarray = a new array
i = 0
End If
Next