|
|
|
|
|
GroupAdd (Function) In french: GroupeAjoute Adds a group of contacts in a Lotus Notes or Outlook address book. The Group structure is used to define the data for this group of contacts. Attention This function does not add a group of contacts to the address book of an Outlook Express mailbox.
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", ...
"mail\julie.nsf", "C:\Users\Julie\AppData\Local\Lotus\Notes\Data\user.id")
GroupReset()
mGroup.Name = "Mes amis"
mGroup.Description = "Groupe de mes amis"
mGroup.NbContact = 3
mGroup.Contact[1] = "Pierre"
mGroup.Contact[2] = "Paul"
mGroup.Contact[3] = "Jacques"
IF GroupAdd(IDSession) = True THEN
Info("Groupe de contacts ajouté")
ELSE
Error("Erreur lors de l'ajout", ErrorInfo())
END
Syntax
<Result> = GroupAdd(<Session identifier>)
Remarks The groups of contacts are not supported by Outlook 97. Therefore, no group of contacts can be added in this version of Outlook.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|