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
Deletes a resource from a Scheduler control.
Caution: If the Scheduler control is linked to a data source, the deletion is performed in the control only: the appointments linked to the resource are not deleted from the data source.
Example
// Adds an appointment for tonight
MyTitle is string
StartAPT is DateTime
EndAPT is DateTime
NbResource is int
 
MyTitle = "Sales meeting"
StartAPT = DateSys() + "17000000"
EndAPT = DateSys() + "17300000"
 
ResourceNum = SCH_Schedule1.AddResource("Florence" + gStoredValue("Flo"))
SCH_Scheduler1.AddAppointment("Flo", MyTitle, StartAPT)
 
MyTitle = "Meeting 2"
StartAPT = DateSys() + "17300000"
EndAPT = DateSys() + "18000000"
SCH_Schedule1.AddResource("Thomas" + gStoredValue("Tom"))
SCH_Scheduler1.AddAppointment("Tom", MyTitle, StartAPT)
 
// Deletes one of the resources
ResDel is boolean
ResDel = SCH_Scheduler1.DeleteResource("Flo")
IF ResDel = True THEN
Info("Resource deleted")
END
Syntax
<Result> = <Scheduler control>.DeleteResource(<Resource>)
<Result>: Boolean
  • True if a resource was deleted,
  • False otherwise.
<Scheduler control>: Control name
Name of Scheduler control from which the resource will be deleted. This control can correspond to:
  • the Scheduler control of a window,
  • the Scheduler control of a page,
  • the Scheduler control of a report.
<Resource>: Character string
Name of resource to delete.
Remark: If the resources of the Scheduler control have been created with <Scheduler>.AddResource by using gStoredValue, this parameter must correspond to the value specified in gStoredValue for this resource.
Component: wd290mdl.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help