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
Continue
statement is in aDo...Loop
loop, change the statement toContinue Do
.If the
Continue
statement is in aFor...Next
loop, change the statement toContinue For
.If the
Continue
statement is in aWhile...End While
loop, change the statement toContinue While
.Otherwise, remove the
Continue
statement.