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
  • Compatibility
  • Equivalences
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the display mode of an Organizer control: day, week, month, ...
Note: Use OrganizerChangeMode to change the display mode of the Organizer control.
Example
// Alterne entre l'affichage par jour et par mois
IF OrganizerMode(AGD_MonAgenda) = orgzDay THEN
	OrganizerChangeMode(AGD_MonAgenda, orgzMonth)
ELSE
	OrganizerChangeMode(AGD_MonAgenda, orgzDay)
END
Syntax
<Result> = OrganizerMode(<Organizer control>)
<Result>: Integer constant
Time range displayed by the Organizer control:
orgzCustomNbDayDisplays the Organizer control over a number of days specified by OrganizerChangeMode.
orgzDayThe Organizer control displays one day.
orgzMonthThe Organizer control displays a full month.
orgzWeekThe Organizer control displays a full week (or a partial week if a number of days was specified with OrganizerChangeMode).
orgzWeekOn5The Organizer control displays a 5-day week (without weekend).
<Organizer control>: Control name
Name of the Organizer control to be used. This field may correspond to:
  • an Organizer control in a report.
Remarks

Compatibility

OrganizerMode replaces OrganizerZoom (kept for backward compatibility).

Equivalences

The following lines of code are equivalent:
OrganizerChangeMode(AGD_Agenda, orgzWeek, 5)
and
OrganizerChangeMode(AGD_Agenda, orgzWeekOn5)

In both cases, OrganizerMode returns the orgzWeekOn5 constant.
Related Examples:
WD Handling the Organizer control 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
WD Organizer 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.
Component: wd300mdl.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/25/2025

Send a report | Local help