My FoxPro program has a quit button and the usual min/max/X buttons in the top right, and when using either the program disappears and seems to have closed properly. However, when I check my Task Manager, I find that it is still running.

This is my main.prg file:

ON SHUTDOWN CLEAR EVENTS
with _screen
.visible = .f.
endwith

DO FORM locations\form1
READ EVENTS
ON SHUTDOWN 

and this is the code for my exit button 'click' event:

unlock all
close database all
clear events
RELEASE ALL
quit

My program has only the one form and it's set as top-level... any suggestions as to how I can fix this?

Thanks for your time and help :)

link|improve this question

I've found the perfect solution for that here->http://reydacoco.blogspot.com/2012/03/terminate-executable-application-in‌​.html – Johannes Doe Mar 7 at 9:39
feedback

2 Answers

up vote 1 down vote accepted

If you are running VFP originating from the IDE (Development environment), and you do _Screen.Visible = .F., you are HIDING the main VFP screen, and the system may be returning directly to that, and since you can't see it, you cant formally quit.

In your MAIN.PRG, put the following down at the bottom as a separate "function" that will be visible within the call stack.

function CloseMyApp
   */ For now, just to "ignore" any errors of any dangling objects trying to get released
   */ and otherwise might be HIDING an error upon shutdown.
   on error *

   */ NOW, clear the event handler and close everything else down
   clear events
   close database all
   close tables
   on shutdown 

   quit
endfunc 

Then, in your start, change your ON SHUTDOWN to call this "function"... Right now, you are only issuing a single command of clear events. This way, you can wrap up a bunch of "cleanup" operations before closing, and not just clearing the read events.

ON SHUTDOWN Do CloseMyApp in Main.PRG
link|improve this answer
I've made the following changes: My main.prg now reads:ON SHUTDOWN Do CloseMyApp in Main.PRG with _screen .visible = .f. endwith DO FORM locations\form1 READ EVENTS function CloseMyApp on error * clear events close database all close tables on shutdown quit endfunc and my exit button 'click' event code is: Do CloseMyApp in Main.PRG Unfortunately it's still not closing in the Task Manager. – Katie Jun 28 '11 at 18:54
@katie, Try, in the first line of the function to close down, add _screen.visible =.t. To allow showing screen before closing and see what error may be holding it back. – DRapp Jun 28 '11 at 20:19
@DRapp- I added the screen.visible code and got no error message or difference other than the screen flash as it "exited." I still see locations.exe running in the Task Manager. – Katie Jun 28 '11 at 20:32
and fixed by setting main.prg as the main program in the foxpro project manager, and by adding the CloseMyApp() function to Destroy. – Katie Jun 30 '11 at 18:56
feedback

If you click the EXIT button on the form (your button) does the form close and the application close correctly ?

If it does, ASSUMING the button is called 'cmdExit' then add this line to the 'UNLOAD' event of the form

THISFORM.cmdExit.click()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.