Examples: GetNextEntry method (NotesACL - LotusScript®)

This script gets the second entry from the ACL of HELLO.NSF.

Dim db As New NotesDatabase( "Kampala", "hello.nsf" )
Dim acl As NotesACL
Dim firstEntry As NotesACLEntry
Dim secondEntry As NotesACLEntry
Set acl = db.ACL
Set firstEntry = acl.GetFirstEntry
Set secondEntry = acl.GetNextEntry( firstEntry )