|
|
|
|
|
AppointmentFirst (Function) In french: RendezVousPremier Reads the first appointment in a Lotus Notes or Outlook calendar. Reminder This function does not allow you to read the first appointment in the calendar of an Outlook Express mailbox.
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> = AppointmentFirst(<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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|