Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
A Continue statement must be followed by Do, For, or While, depending on if the Continue statement appears within a Do...Loop loop, For...Next loop, or While...End While loop.
Error ID: BC30781
To correct this error
If the
Continuestatement is in aDo...Looploop, change the statement toContinue Do.If the
Continuestatement is in aFor...Nextloop, change the statement toContinue For.If the
Continuestatement is in aWhile...End Whileloop, change the statement toContinue While.Otherwise, remove the
Continuestatement.