|
|
|
|
|
<Connection variable>.ModifyTask (Function) In french: <Variable Connexion>.ModifieTâche
Available only with this kind of connection
Modifies a scheduled task on the HFSQL server defined by the connection. This task is in an hScheduledTask variable. MyConnection is Connection
MyTask is hScheduledTask
MyTask = MyConnection.InfoTask(TaskID)
MyTask.Hour = EDT_Time.Hour+1
MyConnection.ModifyTask(TaskID, MyTask)
Syntax
<Result> = <Connection>.ModifyTask(<Task identifier> , <Scheduled task>)
<Result>: Boolean - True if the scheduled task was modified,
- False if an error occurs.
<Connection>: Connection variable Name of the Connection variable that describes the connection for which a task must be added. <Task identifier>: Integer Identifier of the task to modify. This identifier is returned by <Connection variable>.AddTask. <Scheduled task>: hScheduledTask variable Name of the hScheduledTask variable that contains the modifications. Remarks Necessary rights To modify a task, you must have: - the corresponding right (constant hTaskManagerRight) on the server,
- the rights to run the command linked to the scheduled task.
The task will be run with the account of user who created the task. Note: If the server is switched off, the scheduled task will not be performed.. The scheduled task will be performed at the next available date when the server is switched on.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|