VBSCRIPT - FOR LOOP aLLOWED??

Are for each loops allowed in BOI vbscript?

  • 0

    Yes. I have used them in BOI vbscripts to loop through all running processes to see if an instance of the script is already running.

    I never had the need to use it on Sage objects like oLines. I usually use Do While or Do Until to loop through all lines.

    Do Until cBool(oLines.EOF)