Some of you familiar with C may know the "continue" command, for example:
for (i=0; i<5; i++) // equivalent to For i = 0 To 5 in VB
{
if (some condition)
cpntinue;
some statement;
} // In VB this would say Next i
In this case, if "some condition" is satisfied, then instead of...