DON'T USE LABEL LOOPS! Use WHILE:WEND or REPEAT:UNTIL loops. Label loops are bad coding practices. They do not make as much sense as regular loops to the untrained eye, and do not make use of the label feature correctly. WHILE TRUE <- You can set a condition so that this loop will only run if and during when it is true. You can use CONTINUE and BREAK here, which can't be used in label loops. WEND