Home > Available Help Files > PC-DMIS BASIC Language > Cypress Enable Scripting Language Elements > Control Structures > Loop Structures > For ... Next Loop
Current Help File: PC-DMIS Basic (View Core Help)
The For...Next loop has a counter variable and repeats a block of statements a set number of times. The counter variable increases or decreases with each repetition through the loop. The counter default is one if the Step variation is not used.
For counter = beginning value To ending value [Step increment]
statements...
Next