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.
An Exit Select
statement occurs outside a Select
block. Exit Select
is valid only between a Select
or Select Case
statement and a corresponding End Select
statement.
Error ID: BC30099
To correct this error
Make sure a valid
Select
orSelect Case
statement precedes theExit Select
and a validEnd Select
statement appears after it.Verify that other control structures within the
Select
block are correctly terminated.