Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Call proc in different directory
Message
 
 
À
24/06/2009 13:36:09
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 8 SP1
Divers
Thread ID:
01408150
Message ID:
01408153
Vues:
64
>What syntax can i use (if this can be done at all) to call a utility procedure that is in a sub-directory that is not in the path? For example
>SET PATH TO myDataDirectories
>DO somecode
>
>** myFunc is in a directory not in the PATH
>** I want to run this function and store the result in a variable
>
>myVar = myFunc(myParms) --> Error:  File myFunc.prg does not exist
>myVar = subdir\myFunc(myParms) --> Error: Syntax Error
>? subdir\myFunc(myParms) --> Error:  Command contains unrecognized phrase/keyword
>
>Can this be done?
>
>Thanks......Rich

If you want it to return a value, I think there is no simple way except for some weird constructs with
SET TEXT to lcScript
   set path to ...
   myVar = myProce()
  _cliptext = myVar
ENDTEXT

execscript(lcScript)
Otherwise

you can do

do myPath\MyProcedure with myParameters.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform