Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Macro or Evaluate?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01662147
Message ID:
01662148
Vues:
93
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>I need to change a hard-coded expression into a variable (stored in the app object). The expression has a variable - name of the alias - which may change in different parts of the app. Here is an example (close to actual case):
>
>Right now, hard coded:
>
>nQty = EVALUATE(tcAliasName + ".INSTOCK") + EVALUATE(tcAliasName + ".ONORDER") - EVALUATE(tcAliasName 
>+ ".REORDERPNT")
>
>
>If I place the entire hard-coded expression to a variable, as:
>
>cExpr = 'EVALUATE(tcAliasName + ".INSTOCK") + EVALUATE(tcAliasName + ".ONORDER") - EVALUATE(tcAliasName  + ".REORDERPNT")'
>
>
>Will the above work as?
>
>nQty = EVALUATE( cExpr ) 
>*-- or
>nQty = &cExpr.
>
>
>TIA
TEXT TO cExpr NOSHOW TEXTMERGE PRETEXT 15
     <<tcAliasName>>.INSTOCK +
     <<tcAliasName>>.ONORDER -
     <<tcAliasName>>.REORDERPNT
ENDTEXT

nQty = EVALUATE( cExpr ) 
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform