Product Information > JADE Error Messages and System Messages > 14000 through 14999 - JADE User Interface Errors > 14113 - Windows appears to be in a recursive loop

14113   Windows appears to be in a recursive loop

Cause

This error occurs if Windows messages are being received by JADE before previous messages have been dealt with. This situation has reached a critical stage at which JADE will soon generate a runtime fault, due to the overflow of the runtime stack.

This situation is usually caused by inappropriate use of app.doWindowEvents or wait code. For example, if the user holds down a key and the keyDown event code makes an app.doWindowEvents call, another event is processed, which then does another app.doWindowEvents call and so on, until the JADE stack overflows.

Action

Change your code to ensure that a recursive loop does not develop.