Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cancel Button
Message
From
06/12/2000 01:03:27
 
 
General information
Forum:
Visual FoxPro
Category:
FoxPro 2.x
Title:
Miscellaneous
Thread ID:
00447090
Message ID:
00449810
Views:
17
>>>>>In a FoxPro 2.6 Windows application, when start a program that could run a long time, how do you interrupt the program by pushing a "Cancel Button" ?, I do not know what to check for when the cancel button is pushed.
>>>>>
>>>>>Thanks in advance
>>>>
>>>>Pushing the Cancel button, provided it has the \? string in it's setting, will set lastkey() to 27 ie it's as if the escape key is pressed. You must have the prompt defined as say "\?Cancel"
>>>>HTH
>>>
>>>Don't think that will work. FPW won't process the event while code is running. I think you'd have to put a CHRSAW() inside the loop, or something like that.
>>
>>You can't push a button while the code is running either. You need to use an ON KEY command.
>
>Not entirely true. You can use an INKEY() call to get a key (or a mouse click) like this:
>
>
>FOR x=1 TO 100000
>  IF INKEY(.01,"mh")>0   && Check for a mouse click or a key press
>    EXIT
>  ENDIF
>  *
>  * other code here
>  *
>ENDFOR
>?x
>
Not bad! So now you check lastkey() and/or where the mouse was clicked to see if it was on the cancel button using mcol and mrow. That's a neat exercise.
Previous
Reply
Map
View

Click here to load this message in the networking platform