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
Warning
From version 17, this function is kept for backward compatibility. This function is replaced with OrganizerMode.
Returns the time range displayed by an Organizer control: day, week, month, ...
Remark: OrganizerChangeZoom is used to modify the time range displayed by the Organizer control.
Example
// Toggles between daily display and monthly display
IF OrganizerZoom(ORG_MyOrganizer) = orgzDay THEN
OrganizerChangeZoom(ORG_MyOrganizer, orgzMonth)
ELSE
OrganizerChangeZoom(ORG_MyOrganizer, orgzDay)
END
Syntax
<Result> = OrganizerZoom(<Organizer control>)
<Result>: Integer constant
Time range displayed by the Organizer control:
orgzDayThe organizer displays one day.
orgzMonthThe organizer displays a full month.
orgzWeekThe organizer displays a full week (or a partial week if a number of days was specified in OrganizerChangeZoom).
orgzWeekOn5The organizer displays a week on 5 days (without the weekend).
<Organizer control>: Control name
Name of the Organizer control to be used. This control can correspond to:
  • an Organizer control in a window or in a page,
  • an Organizer control in a report.
Remarks
The following code lines are equivalent:
OrganizerZoom(ORG_Organizer, orgzWeek, 5)
and
OrganizerZoom(ORG_Organizer, orgzWeekOn5)
In both cases, OrganizerZoom 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: wd290mdl.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help