|
|
|
|
|
OrganizerAddAppointment (Function) In french: AgendaAjouteRendezVous Adds a new appointment to an Organizer control.
OrganizerAddAppointment(ORG_Organizer, "Appointment with the dentist", "202310291800", "202310291900")
gMyAppointment is Appointment
gMyAppointment.Title = "Appointment with the accountant"
gMyAppointment.Location = "12 Jordan Road, London"
gMyAppointment.Content = "Don't forget to bring the current folders"
gMyAppointment.StartDate = "202310291800"
gMyAppointment.EndDate = "202310291900"
OrganizerAddAppointment(ORG_Organizer, gMyAppointment)
x is Appointment
x.StartDate = Today() + "1200"
x.EndDate = Today() + "1400"
x.WithRepetition = True
y is Repetition
y.Type = schEveryDay
y.DayOfWeek = 1
y.DayOfMonth = "1-7"
y.DayOfMonthOrDayOfWeek = False
x.Repetition = y
OrganizerAddAppointment(ORG_Organizer, x)
Syntax
Adding an appointment while specifying its characteristics Hide the details
<Result> = OrganizerAddAppointment(<Organizer control> , <Title> , <Start date> [, <End date> [, <Category>]])
<Result>: Integer - Index of added appointment,
- -1 if an error occurred. ErrorInfo is used to identify the error.
<Organizer control>: Control name Name of the Organizer control to be used. This control can correspond to: - an Organizer control in a window.
- an Organizer control in a report.
- an Organizer control in a page.
<Title>: Character string Title of appointment. <Start date>: Character string or DateTime variable Start date and time of the appointment. <End date>: Optional character string or optional DateTime variable End date and time of the appointment. If this parameter is not specified, the default duration of the appointment will be set to 1 hour. <Category>: Optional character string Name of category associated with the appointment. If this parameter is not specified, the appointment is associated with no category. The category is automatically created if it does not exist.
Adding an appointment into an Organizer control while using the Appointment type Hide the details
<Result> = OrganizerAddAppointment(<Organizer control> , <Appointment>)
Related Examples:
|
Complete examples (WINDEV): WD Organizer
[ + ] This example is used to synchronize some appointments between your Outlook, Lotus Notes and Google calendars. Based on the Organizer control, you have the ability to create, modify, move or delete the appointments. you also have the ability to classify the appointments by category and to link them to several external organizers.
|
|
Training (WINDEV): WD Handling the Organizer control
[ + ] WD Handling the Organizer control is a simple example for using the Organizer control. The following features are used: - Creating an appointment - Saving an organizer - Restoring an organizer
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|