Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
TopLevel Form Problem
Message
De
08/07/2003 11:59:29
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00808026
Message ID:
00808047
Vues:
15
This message has been marked as the solution to the initial question of the thread.
The oform object variable in your tmess procedure is local. When the read events statement is hit, oform has been already released due to the procedure end. This is why its only flashing.

you can create the object on the read events procedure level

do tmess
oform=create....
read events

or in tmess create the variable public

public oform
oform=create....

this will prohibit the object oform to be released before read events.

Giesbert
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform