|
|
|
|
|
apExecute (Function) In french: paExécute Runs an action plan. Warning This function can only be performed: - from the code of an action plan.
- from a WLanguage procedure found in an "Action plan" project (or configuration).
Note This function is used to manipulate the WINDEV, WEBDEV or WINDEV Mobile editor. Therefore, it is available in the three products.
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" + CR + "GDS:\Projets WinDev\MonProjetGDS")
Syntax
apExecute(<Action plan> [, <Parameter 1> [... [, <Parameter N>]]])
<Action plan>: Character string Name of the action plan to run. This action plan is entirely run before the next statement. If an error occurs: - The ErrorOccurred variable is set to True.
- The execution of the action plan stops in error.
- The "If an error occurs" code of the calling action plan is run.
<Parameter 1>: Type of parameter First parameter that will be passed to the action plan. <Parameter N>: Type of parameter Nth parameter that will be passed to the action plan.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|