The other thing about $Checking is:
that checking off will decrease the .exe by about 200K but overrides the timer!?
Actually this code will hang:
Code: (Select All)
On Timer(1) GoSub 100
Timer On
$Checking:Off
Do
x$ = InKey$
If Len(x$) Then End
Loop
End
100 x = x + 1
Print x;
Return
that checking off will decrease the .exe by about 200K but overrides the timer!?
Actually this code will hang:
Code: (Select All)
$Checking:Off
On Error GoTo 100
Print Sqr(-1)
End
100 Print "error": End