ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Appointment functions (Lotus Notes/Android/iOS)
  • Special cases
  • Application in the background: Specific case from Android 10
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
Displays an appointment in the native application for managing appointments found on the mobile device (Android or iOS).
Example
IF NOT AppointmentDisplay(apt) THEN
Error("Unable to display the appointment.", ErrorInfo())
END
Syntax
<Result> = AppointmentDisplay(<Appointment>)
<Result>: Boolean
  • True if the appointment description was displayed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Appointment>: Appointment variable
Name of the Appointment variable corresponding to the appointment whose description will be displayed. This appointment (listed by AppointmentList) must exist and be included in the calendar of the device.
Remarks

Special cases

  • AppointmentDisplay gives control back to the application as soon as the appointment description is displayed in the native application.
  • Android AppointmentDisplay can be used in the emulator but not in the simulator.
AndroidAndroid Widget

Application in the background: Specific case from Android 10

From Android 10, it is no longer possible to open a window when the application is in the background.
AppointmentDisplay can open a window. If this function is used while the application is in the background, a fatal error will occur.
Tips:
  • It is possible to determine if the application is in the background using InBackgroundMode.
  • If an application needs to interact with the user while it is in the background, the solution is to display a notification (via the Notification type). The application will be brought back to the foreground when the notification is clicked, if the ActivateApplication property is set to True. You can also open a window from the procedure passed to the ActionClick property.
Business / UI classification: Business Logic
Component: wd290android.jar
Minimum version required
  • Version 18
Comments
Click [Add] to post a comment

Last update: 10/02/2023

Send a report | Local help