PRB: Mouse Cursor Disappears in a DO WHILE LoopLast reviewed: April 18, 1995Article ID: Q112399 |
The information in this article applies to:
SYMPTOMSWhen FoxPro for MS-DOS executes the INKEY() function with the "M" parameter, the mouse cursor remains visible. However, when FoxPro for MS-DOS executes a DO WHILE loop, the mouse cursor disappears.
STATUSIn FoxPro for MS-DOS, "no mouse" is the indicator that the mouse is busy when running user code. This behavior is by design.
MORE INFORMATIONThe following code demonstrates the issue. In FoxPro for MS-DOS, create and execute this program:
CLEAR SET MOUSE ON x = SECONDS() @10, 0 SAY "Start" =INKEY(2,"M") && Mouse cursor remains visible in ; FoxPro for MS-DOS @11, 0 SAY "End" DO WHILE SECONDS()-x<=5 && Mouse cursor disappears in ; FoxPro for MS-DOS ENDDOYou will see that the mouse cursor remains visible between the "Start" and "End" points. The "M" parameter of the INKEY() function is required for this visual cue. When the code reaches the DO WHILE loop, the mouse cursor disappears.
|
Additional reference words: FoxDos 2.00 2.50 2.50a 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |