Article ID: 12074
Article Last Modified on 11/21/2006
CLEAR ,,800
KEY(2) ON
ON KEY(2) GOSUB 200
WHILE INKEY$="" : WEND
PRINT "this is a test"
END
200 CLEAR ,,800
PRINT "this worked"
RETURN
The error occurs because the CLEAR statement changes the stack. The
CLEAR statement is not allowed in an event handler because it would
destroy the return address.
Additional query words: QuickBas BasicCom
Keywords: KB12074