Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Read events & clear eventsf
Message
From
07/02/1997 18:51:37
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00019574
Message ID:
00019639
Views:
28
>Hi guys,
>Do you ear about a bug or something else that when you did a clear events; the program return to execute the read events command instead of the next line
>
>EX
>
>MAIN.PRG
>
>App = createobject("application")
>READ EVENTS
>...
>
>in the menu QUIT
>IF App.Release()
> CLEAR EVENTS
>ENDIF

Check the TasTrade sample for one way of doing things.

What I do:

1. "READ EVENTS" is in oMyApp.Do()
2. In the Exit/Quit option of the menu:
if oMyApp.CleanUp()
Release oMyApp
endif
3. In oMyApp.CleanUp() I call QueryUnload for all forms. If all QueryUnload methods return .t.:
CLOSE DATA ALL
CLEAR EVENTS
and return .t.

It works fine. I never had your error since I'm using it (10 months).

Vlad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform