I have a simple form that I want to run as a to level form so the FoxPro main screen is not seen. I have the following:
* main program
_screen.visible=.F.
ON SHUTDOWN DO myshutdown
DO FORM form1.scx
READ EVENTS
PROCEDURE myshutdown
CLEAR EVENTS
ON SHUTDOWN
When I run the exe file, it works fine except that there is still an instance of the program in the Windows Task Manager when I exit the form with thisform.release. It does not show in the task bar as running but I cannot rebuild the exe file as it says the file is in use. If I select the name of the exe in the task manager and select end task, it goes away with no problem. Any help would be appreciated.
Thanks
* main program
_screen.visible=.F.
ON SHUTDOWN DO myshutdown
DO FORM form1.scx
READ EVENTS
PROCEDURE myshutdown
CLEAR EVENTS
ON SHUTDOWN
When I run the exe file, it works fine except that there is still an instance of the program in the Windows Task Manager when I exit the form with thisform.release. It does not show in the task bar as running but I cannot rebuild the exe file as it says the file is in use. If I select the name of the exe in the task manager and select end task, it goes away with no problem. Any help would be appreciated.
Thanks