|
|
|
|
|
AppointmentNext (Function) In french: RendezVousSuivant Reads the appointment after the current appointment in a Lotus Notes or Outlook calendar. Reminder This function does not allow you to read the appointment following the current one in the Outlook Express calendar.
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", "mail/julie.nsf", "C:\Lotus Notes\julie.id")
AppointmentFirst(IDSession)
WHILE mAppointment.Out = False
ListAdd(LISTE_ListeRDV, mAppointment.Subject + TAB + mAppointment.Location)
AppointmentNext(IDSession)
END
Syntax
<Result> = AppointmentNext(<Session identifier>)
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).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|