The sequence of execution in your script jumped into the middle of a For...Next loop. This causes an error because For...Next loop counters must be initialized. The following demonstrates the correct structure of a For...Next loop.

 CopyCode imageCopy Code
      For counter = start To end [Step step]
    [statements]
    [Exit For]
    [statements]
Next

To correct this error

  • Remove the jump into the For...Next loop.

  • Make sure that the For...Next loop includes all the necessary parts.

See Also

In Vbsedit, you only need to press F1 to get Help for the keyword under the cursor!


Download Now!



Download   Home  

Copyright © 2001-2024 adersοft