Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Evaluating profile logic
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01134150
Message ID:
01134159
Vues:
36
This message has been marked as the solution to the initial question of the thread.
The first expression is only valid in SQL. You'll have to parse it in order to apply directly to a table. The query route may not be as bad as you think
lcExpr = 'Trans.cProduct_Line_Code between "100" and "200"'
lnPK = Trans.pk
SELECT * FROM Trans ;
  WHERE Trans.pk = lnPK AND &lcExpr ;
  TO SCREEN NOCONSOLE
IF _TALLY > 0
  * satisfied
ENDIF
>Here is my problem:
>?evaluate()
>
>?evaluate('between(Trans.cProduct_Line_Code,"100","200")')
>
>In user's profile we have logic specified in the first form. In my code I'm attempting to check, if the current record in Trans satisfies the profile logic.
>
>How should I change my code to make sure it always work correctly? I wanted to avoid using Select SQL and just apply logic directly to the Trans file.
>
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform