Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Application Object Best Practices
Message
De
24/07/2011 23:37:01
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Classes - VCX
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MySQL
Application:
Desktop
Divers
Thread ID:
01519029
Message ID:
01519034
Vues:
73
Naomi,

Thanks for your reply Naomi. Which do you use?

Dennis


>I think you can make just one main object and everything else to be derived. However, I'm not sure there is best practice here, as both models are valid and you can use either one.
>
>
>>Hi Experts,
>>
>>I have a question re best practices on creating an Application Object.
>>
>>Should objects coming from say a Connections Manager or Forms Manager be a member object of - already instantiated - by the Application Object like so:
>>
>>
>>oApp = CREATEOBJECT ("myApplicationClass")     --> also instantiates oFormsMgr, oConnMgr
>>oApp.oFormsMgr.MyMethod()
>>oApp.oConnMgr.SomeOtherMethod()
>>
>>
>>or can exists 'stand-alone', like so:
>>
>>oApp = CREATEOBJECT ("myApplicationClass")    
>>
>>IF NOT oApp.Connect()
>>    MESSAGEBOX( 'Unable to connect' )
>>    ** do whatever else
>>ENDIF
>>
>>PROCEDURE Connect
>>  LOCAL llResult
>>  oConnMgr = CREATEOBJECT( 'myConnectionMgr' )
>>  llResult = oConnMgr.Connect()
>>  RETURN lnResult
>>
>>
>>Thanks in Advance
>>Dennis
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform