|
|
|
|
|
ContactNext (Function) In french: ContactSuivant Reads the contact after the current contact in a Lotus Notes or Outlook address book. Attention This function does not to read the next contact in the address book of an Outlook Express mailbox. When reading a contact, the data of this contact is updated in the Contact structure. To retrieve the data of the current contact, simply retrieve the values from the Contact structure.
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", "mail/julie.nsf", ...
"C:\Lotus Notes\julie.id")
ContactFirst(IDSession)
WHILE mContact.Out = False
ListAdd(LISTE_ListeContact, mContact.Name + TAB + mContact.FirstName)
ContactNext(IDSession)
END
Syntax
<Result> = ContactNext(<Session identifier>)
Remarks Current contact The mContact.Out variable is used to find out whether a current contact exists.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|