Hi,How can I add a new group. The only method I’ve found, is the “Addgroupmembers”. I think this is not enough, because I’ve to verify if the group exist or not.
-thanks-
Hi,How can I add a new group. The only method I’ve found, is the “Addgroupmembers”. I think this is not enough, because I’ve to verify if the group exist or not.
-thanks-
Subject: adding new group/verifying group-existance
There isn’t a built-in method or class for creating a group, the way there is for deleting a group. To create a group, just write an agent in the NAB that creates a new NotesDocument using the form Group, that contains the following fields:
ListName
ListOwner
Members
You can then add your initial group members in the same agent, by doing an appendtotextlist on the Members NotesItem.
Subject: adding new group/verifying group-existance
thanks!!!