Udostępnij za pośrednictwem


'Continue While' can only appear inside a 'While' statement

A Continue While statement can only appear within a For...Next loop.

Error ID: BC30784

To correct this error

  1. If the Continue While statement is in a Do...Loop loop, change the statement to Continue Do.

  2. If the Continue While statement is in a For...Next loop, change the statement to Continue For.

  3. Otherwise, remove the Continue While statement.

See Also

Reference

Continue Statement (Visual Basic)

While...End While Statement (Visual Basic)