ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Organizer functions
  • Equivalences
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
Returns the display mode of an Organizer control: day, week, month, ...
Remark: <Organizer>.ChangeMode is used to change the display mode of the Organizer control.
Example
// Toggles between daily display and monthly display
IF ORG_MyOrganizer.Mode() = orgzDay THEN
ORG_MyOrganizer.ChangeMode(orgzMonth)
ELSE
ORG_MyOrganizer.ChangeMode(orgzDay)
END
Syntax
<Result> = <Organizer control>.Mode()
<Result>: Integer constant
Time range displayed by the Organizer control:
orgzCustomNbDayDisplays the Organizer control over a number of days specified by <Organizer>.ChangeMode.
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 <Organizer>.ChangeMode).
orgzWeekOn5The Organizer control displays a 5-day week (without weekend).
<Organizer control>: Control name
Name of the Organizer control to be used. This control can correspond to:
  • an Organizer control in a report.
Remarks

Equivalences

The following code lines are equivalent:
ORG_Organizer.ChangeMode(orgzWeek, 5)
and
ORG_Organizer.ChangeMode(orgzWeekOn5)

In both cases, <Organizer>.Mode 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 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/19/2023

Send a report | Local help