AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones específicas de la Web / Funciones de tareas programadas de WEBDEV
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
AppServerModifyScheduledTask (Function)
In french: ServeurAppliModifieTâchePlanifiée
Modifies the description of an existing scheduled task.
Example
// Changes the programming of the task in order to run it every hour
MyScheduledTask.Month = "*"
MyScheduledTask.DayOfMonth = "*"
MyScheduledTask.DayOfWeek = "*"
MyScheduledTask.Hour = "*"
MyScheduledTask.Minute = "0"
 
IF NOT AppServerModifyScheduledTask(MyScheduledTask) THEN
// Error case (if the task does not exist anymore for example)
END
Syntax
<Result> = AppServerModifyScheduledTask(<Scheduled task>)
<Result>: Boolean
  • True if the scheduled task was modified.
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Scheduled task>: appServerScheduledTask variable
Name of appServerScheduledTask variable corresponding to the description of scheduled task to modify.
Remark: The scheduled task is sought via its name. If the scheduled task is not found, the function returns an error.
Component: wd290page.dll
Versión mínima requerida
  • Versión 22
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 23/06/2022

Señalar un error o enviar una sugerencia | Ayuda local