|
|
|
|
AppointmentFirst (Function) In french: RendezVousPremier Reads the first appointment found in the calendar of a Lotus Notes or Outlook messaging. Reminder: This function cannot be used to read the first appointment found in the calendar of an Outlook Express messaging.
// Start a Lotus Notes session SessionID is int SessionID = EmailStartNotesSession("Password", "MarsServer", "email/julia.nsf", "C:\Lotus Notes\julia.id") // Read the first appointment AppointmentFirst(SessionID) // Add the appointments found into a List Box control WHILE mAppointment.Out = False ListAdd(LIST_APTList, mAppointment.Subject + TAB + mAppointment.Location) AppointmentNext(SessionID) 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|