Examples: CreateACLEntry method

This script gives Shelly McPhail Editor access to a database.

Dim db As New NotesDatabase( "Warsaw", "data\discuss.nsf" )
Dim acl As NotesACL
Dim entry As NotesACLEntry
Set acl = db.ACL
Set entry = acl.CreateACLEntry _
( "Shelly McPhail/East/ACME", ACLLEVEL_EDITOR )
Call acl.Save