Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Stop table insertions
Message
 
To
28/11/2000 16:02:02
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00446434
Message ID:
00446452
Views:
9
>I have created a test program that is basically doing a numbers crunch, inserting multiple records into two different tables one after another. I want it to continue inserting records until the users tells it to stop. Right now I have it set up to stop when the user hits the ESC key (by putting all of my code in a Do While loop: DO WHILE(inkey() <> 27)). But, when the user hits ESC instead I am getting an error which says ***INTERRUPTED***. It doesn't finish going through the code, it just stops dead in its tracks. Can anyone tell me a good way to stop the insertions without getting the error message?

***************************************************************************
Joe;

Try:

Do While inkey() <> 27
If Inkey() = 27
* You may want to close your tables at this point.
Exit
Endif
* Your code

EndDo

Tom
Previous
Reply
Map
View

Click here to load this message in the networking platform