|
|
|
|
|
paExécute (Fonction) En anglais : apExecute Exécute un plan d'action. Attention : Cette fonction peut être exécutée uniquement : - depuis le code d'un plan d'action.
- depuis une procédure WLangage présente dans un projet (ou une configuration) de type "Plan d'action".
Remarque : Cette fonction est une fonction permettant de manipuler l'éditeur de WINDEV, WEBDEV ou WINDEV Mobile. Elle est donc disponible dans les trois produits.
paExécute(PLAN_MonPlan, "D:\WINDEV23", "23")
PLAN_MonPlan.RepWD = "D:\WINDEV23"
PLAN_MonPlan.Version = "23"
paExécute(PLAN_MonPlan)
paExécute(PLAN_MonPlan, "CS:\\ServeurHF\MaBaseGDS" + RC + "GDS:\Projets WinDev\MonProjetGDS")
Syntaxe
paExécute(<Plan d'action> [, <Paramètre 1> [... [, <Paramètre N>]]])
<Plan d'action> : Chaîne de caractères Nom du plan d'action à exécuter. Ce plan d'action est entièrement exécuté avant l'instruction suivante. En cas d'erreur : - La variable ErreurDétectée vaut Vrai.
- L'exécution du plan d'action s'arrête en erreur.
- Le code "En cas d'erreur" du plan d'action appelant est exécuté.
<Paramètre 1> : Type du paramètre Premier paramètre à passer au plan d'action. <Paramètre N> : Type du paramètre Paramètre N à passer au plan d'action. Composante : wdxxxfab.dll
Documentation également disponible pour…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|