NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Stop Statement Example

This example uses the Stop statement to suspend execution for each iteration through the For...Next loop.

Dim I
For I = 1 To 10   ' Start For...Next loop.
   Debug.Print I   ' Print I to the Immediate window.
   Stop   ' Stop during each iteration.
Next I