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 execting "some statement", the program moves on immediately to the next "go-round" in the loop.
I have been looking for a similar function on VB on the internet, but without success. Could anybody confirm whether this functionality is available in VB or not?
Many thanks.
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 execting "some statement", the program moves on immediately to the next "go-round" in the loop.
I have been looking for a similar function on VB on the internet, but without success. Could anybody confirm whether this functionality is available in VB or not?
Many thanks.