Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
VFP and App will not shutdown
Message
 
 
À
11/02/2005 12:49:51
John Marrone
Bloodstock Research Inc.
Lexington, Kentucky, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
00986039
Message ID:
00986299
Vues:
26
John,

Just to expand a little on Nadya's reply. You have to clear the ON SHUTDOWN handler inside your shutdown handler so that it'll no longer try to intercept the shutdown process.
PROCEDURE CloseDown()
    on shutdown
    SET SYSMENU TO DEFAULT
    frmMain.Unload
    CLEAR EVENTS
**    CANCEL && there is no need to cancel here at all
RETURN
The CLEAR EVENTS will cause program flow to continue to the next line of code after the READ EVENTS.

>Hi
>Below is my code. The problem is my application will not shutdown. And then when I try to quit vfp it will not shutdown either.
>
>This is in my main prg.
>
>CODE
>PUBLIC frmMain as Object
>
>SET PATH TO HOME(1);MENUS;classes;libs;DATA;SOURCE;OTHER;graphics;FORMS;OTHER
>ON SHUTDOWN DO closedown
>SET CLASSLIB TO clsForms.vcx
>frmMain = CreateObject("MainForm")
>frmMain.Show
>READ EVENTS
>
>This is my shutdown procedure
>
>CODE
>PROCEDURE CloseDown()
> SET SYSMENU TO DEFAULT
> frmMain.Unload
> CLEAR EVENTS
> CANCEL
>RETURN
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform