ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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
AGD_MonAgenda.SelectPlus(1)
// Récupère la description de ce rendez-vous
tabRendezVous is array of Appointment
tabRendezVous = AGD_MonAgenda.ListeRendezVous(orgAptSelected)
// Ajoute un rendez-vous dans un champ Agenda puis sélectionne ce rendez-vous
IndiceAjout is int
gMonRendezVous is Appointment
IndiceAjout = AGD_MonAgenda.AjouteRendezVous(gMonRendezVous)
AGD_MonAgenda.SelectPlus(IndiceAjout)
Syntax

Selecting an appointment identified by its index Hide the details

<Organizer control>.SelectPlus(<Appointment index>)
<Organizer control>: Control name
Name of the Organizer control to be used. This field may correspond to:
  • WINDEVAndroidiPhone/iPadMac Catalyst an Organizer control in a window.
  • WEBDEV - Server codePHP an Organizer control in a page.
<Appointment index>: Integer
Index of the appointment to be selected. Appointment indexes start from 1.
WINDEViPhone/iPadMac Catalyst

Selecting an appointment identified by an Appointment variable Hide the details

<Organizer control>.SelectPlus(<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.
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/25/2024

Send a report | Local help