I ran into something I didn't know (not an unusual occurrence by a long shot, but anyway...) I found that you can put code between the SELECT and the first CASE and it is always executed. I couldn't find anything in the docs about it. I just thought it was interesting. Ver 10.04.
Code:
LOCAL X AS LONG X = 2 SELECT CASE X ? "Always" CASE = 1: ? "1" CASE = 2: ? "2" CASE = 3: ? "3" END SELECT
Comment