Next Statement Does Not Take a Variable

Visual Basic supports an optional variable name in the Next statement to be compatible with older Basic syntax. This variable name is not necessary, and is not supported for Windows CE.

Example of this error:

For I = 1 To 15
...
Next I

Change to:

For I = 1 To 15
...
Next