Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Design Classes - Iterator-Visitor
Message
De
05/10/1998 07:35:39
Rex Mahel
Realm Software, Llc
Ohio, États-Unis
 
 
À
05/10/1998 07:17:57
Information générale
Forum:
Visual FoxPro
Catégorie:
Classes - VCX
Divers
Thread ID:
00143802
Message ID:
00143805
Vues:
20
Ed,

That was my original idea, I was just wondering if there was a way that didn't expose as much of my form workings to the iterator.

Thanks

Rex

>>All,
>>
>>I need to return values from a visitor object to my form, but I want to maintain loose coupling between to objects. Is there a slick way to accomplish this? I am considering form properties, but that promotes tight coupling.
>
>What about passing a ref to the parent as a parameter, and then manipulating the properties of the parent object from the passed parameter? IOW:
>
>loMyChild = CREATEOBJ('ChildObj',this)
>
>or
>
>DO FORM MyChildForm WITH this
>
>and then create a property in the child object to hold the object ref, and assign it in the child's Init() method. Assuming you've defined a property ioParentRef in the child, add this to the Init method code:
>
>
>LPARAMETER toParentObject
>IF TYPE('toParentObject') = 'O'
> this.ioParentRef = toParentObject
>ELSE
> RETURN .F.
>ENDIF
>
>
>You can then access Public properties and methods of the parent within the child via this.ioParentRef. Just remember to release the reference this.ioParentRef in your Release() or Destroy() method of the child.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform