ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Organizer 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
Selects an appointment in an Organizer control.
Example
// Selects the first appointment found in the Organizer control
OrganizerSelectPlus(ORG_MyOrganizer, 1)
 
// Retrieves the description of this appointment
arrAppointment is array of Appointment
arrAppointment = OrganizerListAppointment(ORG_MyOrganizer, orgAptSelected)
// Adds an appointment in the Organizer control and then selects that appointment
AdditionIndex is int
gMyAppointment is Appointment
 
AdditionIndex = OrganizerAddAppointment(ORG_MyOrganizer, gMyAppointment)
OrganizerSelectPlus(ORG_MyOrganizer, AdditionIndex)
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 control can 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 indices start from 1.
WINDEViPhone/iPadMac Catalyst

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: wd290obj.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/31/2022

Send a report | Local help