Share via


Label not foundĀ 

You made a reference to a label that does not exist. Labels can be used to mark blocks of code, but within a specified scope, must be unique.

To correct this error

  • Check to make sure you did not misspell the label name.

  • Ensure all label references are made to labels that have been defined in the current scope (this includes forward definitions).

See Also

Reference

Labeled Statement (JScript 5.6)
switch Statement (JScript 5.6)
break Statement (JScript 5.6)
continue Statement (JScript 5.6)