|
|
|
|
|
- Compatibility
- Equivalences
OrganizerMode (Function) In french: AgendaMode Returns the display mode of an Organizer control: day, week, month, ... // Toggles between daily display and monthly display IF OrganizerMode(ORG_MyOrganizer) = orgzDay THEN OrganizerChangeMode(ORG_MyOrganizer, orgzMonth) ELSE OrganizerChangeMode(ORG_MyOrganizer, orgzDay) END
Syntax
<Result> = OrganizerMode(<Organizer control>)
<Result>: Integer constant Time range displayed by the Organizer control: | | orgzCustomNbDay | Displays the Organizer control over a number of days specified by OrganizerChangeMode. | orgzDay | The Organizer control displays one day. | orgzMonth | The Organizer control displays a full month. | orgzWeek | The Organizer control displays a full week (or a partial week if a number of days was specified with OrganizerChangeMode). | orgzWeekOn5 | The 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 window.
- an Organizer control in a report.
Remarks Compatibility OrganizerMode replaces OrganizerZoom (kept for backward compatibility). Equivalences The following code lines are equivalent:
OrganizerChangeMode(ORG_Organizer, orgzWeek, 5)
and
OrganizerChangeMode(ORG_Organizer, orgzWeekOn5)
In both cases, OrganizerMode returns the orgzWeekOn5 constant.
Related Examples:
|
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
|
|
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.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|