LOTUSSCRIPT/COM/OLE CLASSES


Examples: RevokeAccess method
This script revokes David Perron's access to the current database.

Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Call db.RevokeAccess( "David Perron" )

See Also