Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
More Thoughts on Assign and Access (VFP6)
Message
De
14/07/1998 12:23:05
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
More Thoughts on Assign and Access (VFP6)
Divers
Thread ID:
00117203
Message ID:
00117203
Vues:
54
With prior versions of VFP, you could hide properties in, lets say, an Application object and call only methods if you wanted to. With VFP6 and Access and Assign you can do the total opposite.

The VFP documentation, in describing the benefits of Access and Assign, states:

"You can create a public interface for a class or object that separates the interface from the implementation"

This is true and cool. For example, if you wanted an opentable method in your App object, you could add a custom property ("OpenTable") and a custom method ("OpenTable_Assign").

From elsewhere, you would just set the property: oApp.OpenTable="mytable"

The OpenTable_Assign code would be:
LPARAMETERS vNewVal
IF TYPE("vNewVal") = "C"
   USE (vNewVal)
ENDIF
------------------------------------------------
John Koziol, ex-MVP, ex-MS, ex-FoxTeam. Just call me "X"
"When the going gets weird, the weird turn pro" - Hunter Thompson (Gonzo) RIP 2/19/05
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform