ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Scheduler 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
Allows you to indicate the specific working hours per day in a Scheduler control. This time period can be specified:
  • for the morning.
  • for the afternoon.
The time periods can be defined per day of the week.
Example
// From 9:00 to 12:00 then from 13:40 to 19:15
SchedulerWorkingHour(SCH_MySchedule, "0900", "1200", "1330", "1915")
 
// No appointment on Monday morning
SchedulerWorkingHour(SCH_MySchedule, "1330", "1915", "", "", 1)
Syntax
SchedulerWorkingHour(<Scheduler control> , <Morning start time> , <Morning end time> [, <Afternoon start time> [, <Afternoon end time> [, <Day of week>]]])
<Scheduler control>: Control name
Name of Scheduler control to use.
<Morning start time>: Time or Character string
Morning start time (in "HHMM" format).
<Morning end time>: Time or Character string
Morning end time (in "HHMM" format).
<Afternoon start time>: Time or Optional character string
Afternoon start time (in "HHMM" format).
<Afternoon end time>: Time or Optional character string
Afternoon end time (in "HHMM" format).
<Day of week>: Optional integer
Indicates the number of the day affected by the specified schedules:
  • 1 for Monday,
  • 2 for Tuesday,
  • 3 for Wednesday,
  • 4 for Thursday,
  • 5 for Friday,
  • 6 for Saturday,
  • 7 for Sunday.
If this parameter is not specified or if it is set to 0, the definition of working hours is applied to all days of the week.
Remarks
  • The working hours are highlighted by a different color. This color is chosen in the style options of the control.
  • SchedulerWorkingHour replaces the working hours defined by WorkingHourStart and WorkingHourEnd.
Component: wd290mdl.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help