Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Create Form problem inisde the problem.
Message
 
À
28/08/2000 21:09:52
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00410094
Message ID:
00410146
Vues:
11
I know your problem (i hope)

You probably do something like
createobject('myform')
or
local loForm
loForm=createobject('myform')
What now happens is that a local object reference is created. When the routine stops this var is released
Better create a public var and store the reference to the form to this var.
When you release the form, don't forget to release the public var.
Public oMyForm
oMyForm = CreateObject('MyForm')
oMyForm.Show()
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform