ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Appointment functions (Lotus Notes/Android/iOS)
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reads the appointment after the current appointment in a Lotus Notes or Outlook calendar.
When reading an appointment, the data of this appointment is updated in the Appointment structure. To retrieve the data of the current appointment, simply retrieve the values from the Appointment structure.
Reminder This function does not allow you to read the appointment following the current one in the Outlook Express calendar.
Example
// Ouverture d'une session Lotus Notes
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", "mail/julie.nsf", "C:\Lotus Notes\julie.id")
// Lecture du premier rendez-vous
AppointmentFirst(IDSession)
// Ajout des rendez-vous trouvés dans un champ Liste
WHILE mAppointment.Out = False
	ListAdd(LISTE_ListeRDV, mAppointment.Subject + TAB + mAppointment.Location)
	AppointmentNext(IDSession)
END
Syntax
<Result> = AppointmentNext(<Session identifier>)
<Result>: Boolean
  • True if the next appointment was read,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Session identifier>: Integer
Session ID to be used. This ID is returned by one of the following functions: EmailStartNotesSession, EmailStartOutlookSession, NotesOpenDatabase or OutlookStartSession.
Remarks
  • The mAppointment.Out variable allows you to find out whether there is a current appointment.
  • In Outlook, the management mode of contacts/participants can be specified when starting the session (EmailStartOutlookSession or OutlookStartSession).
Component: wd300com.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help