Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Reference to parent object.
Message
De
07/12/2004 09:00:33
 
 
À
07/12/2004 08:47:21
Information générale
Forum:
Visual FoxPro
Catégorie:
Programmation Orientée Object
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows 2000 SP3
Network:
Windows 2000 Server
Database:
MS SQL Server
Divers
Thread ID:
00967446
Message ID:
00967455
Vues:
12
This message has been marked as a message which has helped to the initial question of the thread.
You can add a property that hold a pointer to the parent:
Thisform.AddProperty ('oMyClass', CreateObject ('MyClassName'))
Thisform.oMyClass.AddProperty ('oMyParent', THISFORM)
...
*-- In a MyClassName method
THIS.oMyParent.Caption = "Test"
Be very careful of releasing the pointer (MyClassName.oMyParent) before releasing the parent form. You can use this code in the Destroy event of the form to assure this:
THIS.oMyClass.oMyParent = NULL
HTH

>I have a class that is added to a form property using :-
>
>
>Thisform.AddProperty('oMyClass', CreateObject('MyClassName')
>
>
>Without passing a reference to the class of Thisform, is there anyway in the class to access ThisForm ? If in the object, I refer to THIS.PARENT, it does not get me a reference to the containing form.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform