How to Prevent Recursion Within ON KEY LABEL RoutinesLast reviewed: April 29, 1996Article ID: Q98754 |
The information in this article applies to:
SYMPTOMSIf a key that is assigned to an ON KEY LABEL procedure is pressed while that same procedure is executing, an undesirable recursive condition will be created. If this same key is accidentally held down, the typematic function of MS-DOS (the rate at which MS-DOS repeats a character when you hold down a key) may fill the keyboard buffer with as many as 31 keystrokes. After attempting to DO the procedure as many times as possible, the program will abort with the message "DO nesting too deep."
RESOLUTIONTo work around this problem, turn off the key trap at the beginning of the procedure, then set it back on again as the procedure is exited. The sample program below demonstrates this workaround.
MORE INFORMATIONThe simplest method of disabling an ON KEY LABEL trap is to assign the asterisk (*) to the same key label that originally called the currently executing procedure. This assignment should be the very first line of the procedure, provided there are no parameters to be passed, in which case it should immediately follow the PARAMETERS statement. After the routine has completed its operation, the key can be reassigned to its previous command to DO the procedure. This reassignment should be the last line in the procedure before the (implied or written) RETURN statement.
*** XYZ.PRG PUSH KEY CLEAR && Clears and saves current ON KEY LABEL settings ON KEY LABEL F5 DO abc && original assignment in main program && && body of main program && * (To run this code as a stand-alone program, place a READ CYCLE * command here). * Place the POP KEY command immediately before the RETURN (if one * exists) or the end of the main program. POP KEY && Restores ON KEY LABEL settings PROCEDURE abc ON KEY LABEL F5 * && reassigns F5 to a comment *... other code WAIT WINDOW "pressing F5 now won't call this procedure again" *... more code ON KEY LABEL F5 DO abc && reassigns F5 to its original trapNOTE: While this method prevents recursive calls from within a procedure, on some very fast machines this method will not prevent the procedure call stack from overflowing. The "DO nesting too deep" error cannot be trapped by an ON ERROR routine, as the ON ERROR routine must place its call on the same stack.
|
Additional reference words: VFoxWin 3.00 FoxDos FoxWin 1.02 2.00 2.50
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |