ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Organizer functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Selects an appointment in an Organizer control.
Example
// Sélectionne le premier rendez-vous du champ Agenda
OrganizerSelectPlus(AGD_MonAgenda, 1)

// Récupère la description de ce rendez-vous
tabRendezVous is array of Appointment
tabRendezVous = OrganizerListAppointment(AGD_MonAgenda, orgAptSelected)
// Ajoute un rendez-vous dans le champ Agenda puis sélectionne ce rendez-vous
IndiceAjout is int
gMonRendezVous is Appointment

IndiceAjout = OrganizerAddAppointment(AGD_MonAgenda, gMonRendezVous)
OrganizerSelectPlus(AGD_MonAgenda, IndiceAjout)
Syntax

Selecting an appointment identified by its index Hide the details

OrganizerSelectPlus(<Organizer control> , <Appointment index>)
<Organizer control>: Control name
Name of the Organizer control to be used. This field may correspond to:
  • WINDEV an Organizer control in a window.
<Appointment index>: Integer
Index of the appointment to be selected. Appointment indexes start from 1.
WINDEV

Selecting an appointment identified by an Appointment variable Hide the details

OrganizerSelectPlus(<Organizer control> , <Appointment to select>)
<Organizer control>: Control name
Name of the Organizer control to use in a window.
<Appointment to select>: Appointment variable
Name of the Appointment variable that corresponds to the appointment to select.
Business / UI classification: UI Code
Component: wd300obj.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/25/2025

Send a report | Local help