This is my code, or, its the beginning of something, but it crashes already, without an error, only 1 trace command works, on the second the code stops.
Let l3 = 1; Do While l3 < 5 Let Command = ''; For field = 1 to 4 if field = l3 then Let Command = Command & '*'; else Let Command = Command & 'F' & field; end if if field < 4 then Let Command = Command & '/'; end if Next field Trace Command = $(Command);