Home > Available Help Files > PC-DMIS BASIC Language > Cypress Enable Scripting Language Elements > Arrays > Manipulating Arrays
Current Help File: PC-DMIS Basic (View Core Help)
Loops often provide an efficient way to manipulate arrays. For example, the following For loop initializes all elements in the array to 5:
Static Counters (1 To 20) As Integer
Dim I As Integer
For I = 1 To 20
Counter ( I ) = 5
Next I
...