ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Web-specific functions / WEBDEV scheduled task functions
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
Minimum version required
  • Version 22
Comments
Click [Add] to post a comment

Last update: 06/23/2022

Send a report | Local help