Modifies the current group of contacts in the address book of a Lotus Notes or Outlook messaging.
When reading a group of contacts, the data of this group is updated in the
Group structure. To modify the current group, all you have to do is modify the values of the
Group structure and validate the modifications with
GroupModify.
Caution: This function cannot be used to modify the current group of contacts in the address book of an Outlook Express messaging.
// Start a Lotus Notes session
SessionID is int
SessionID = EmailStartNotesSession("Password", "MarsServer", ...
"mail\julia.nsf", "C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id")
// Read the first group of contacts
GroupFirst(SessionID)
// Add a new contact into this group
mGroup.NbContact = 4
mGroup.Contact = "Arthur"
GroupModify(SessionID)
Syntax
<Result> = GroupModify(<Session identifier>)
Remarks
The groups of contacts are not supported by Outlook 97. Therefore, no group of contacts can be modified in this version of Outlook.