Is there a VB6 equivalent to the C/C++ 'continue' keyword?
In C/C++, the command 'continue' starts the next iteration of the loop.
Of course, other equivalents exist. I could put the remaining code of the loop in an if-statement. Alternatively, I could use a goto. (Ugh!)