Examples: Dot notation

In Notes/Domino, you use the NotesDatabase class to access a database. This example sets the value of the Title property and uses the GrantAccess method to adjust the database's access control list (ACL).

Dim db As New NotesDatabase("Server003", "discuss.nsf")
db.Title = "HQEVB Group Discussion"
Call db.GrantAccess("HQEVB Group", ACLLEVEL_AUTHOR)