SchedulerDeleteResource (Function) In french: PlanningSupprimeRessource 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.
// 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 = SchedulerAddResource(SCH_Schedule1, "Florence" + gStoredValue("Flo")) SchedulerAddAppointment(SCH_Schedule1, "Flo", MyTitle, StartAPT) MyTitle = "Meeting 2" StartAPT = DateSys() + "17300000" EndAPT = DateSys() + "18000000" SchedulerAddResource(SCH_Schedule1, "Thomas" + gStoredValue("Tom")) SchedulerAddAppointment(SCH_Schedule1, "Tom", MyTitle, StartAPT) // Deletes one of the resources ResDel is boolean ResDel = SchedulerDeleteResource(SCH_Schedule1, "Flo") IF ResDel = True THEN Info("Resource deleted") END
Syntax
<Result> = SchedulerDeleteResource(<Scheduler control> , <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.
This page is also available for…
|
|
|
|