Examples: DisableRole method

This script disables the Auditor role for Bill Ehrhardt, in the database DISCUSS.NSF.

Dim db As New NotesDatabase _
( "Bucharest", "data\discuss.nsf" )
Dim acl As NotesACL
Dim entry As NotesACLEntry
Set acl = db.ACL
Set entry = acl.GetEntry( "Bill Ehrhardt/East/ACME" )
Call entry.DisableRole( "Auditor" )
Call acl.Save