Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am running a For Next Loop and I have a script line error Next i
For i = 0 to 2
next i
Can somebody tell me why.
I have check my script there's not any Next i in the code that should be in my script apart from the 1 am expecting.
can you load full script pls
the problen isn't in the for loop but in other section of the script
Hi,
please upload your script, or QVW
With Regards
Harshita Gaur
Try it without next i:
For i = 0 to 2
trace $(i);
next
- Marcus
Try this:
FOR i=0 to 2 Step 1
NEXT
You will also get this "Script line error next" message if you commented out the "For" syntax without commenting out the respective "Next" syntax that goes with it. Obvious yes...unless you forgot that you started commenting out code.
Hi Team,
Please find the error screenshot..