Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Loop never stops
Message
From
08/12/2004 20:03:16
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Loop never stops
Miscellaneous
Thread ID:
00967910
Message ID:
00967910
Views:
73
Hi friends

I have some code which runs thr a loop.it can be infinite loop depending on the parameters passed to it.my sample code

DO WHILE .T.
* allow ESC or insert (for dev) to cancel seach
lnKey = INKEY()
IF lnKey = 27 OR (gldevelop AND lnkey = 22)
llCancel = .T.
EXIT
ENDIF
---code here
**** more code here
ENDDO

as u can see i added code inkey() so that user can quite out of the program anytime he wants.(he can press ESC or INS)

but no matter how many times i press ESC or INS the program would not stop !!
is it a bug ? or am i missing anything here.
Thanks for ur ideas
Next
Reply
Map
View

Click here to load this message in the networking platform