10-23-2022, 08:30 PM
Exactly. In these examples _CONTINUE only promotes a coding style. Without it, and still using just 2 and 8, we get...
Code: (Select All)
PRINT
PRINT
FOR x = 1 TO 10
SELECT CASE x
CASE 2, 8
CASE ELSE
PRINT x;
END SELECT
NEXT
Shoot first and shoot people who ask questions, later.