Hi ,
I am creating ACL Entry through NotesACL class. using “CreateACLEntry” Method… How can I check Whether the Entry I am creating is Already there or not ?
Any suggestions ?
Thanks
Abhishek
Hi ,
I am creating ACL Entry through NotesACL class. using “CreateACLEntry” Method… How can I check Whether the Entry I am creating is Already there or not ?
Any suggestions ?
Thanks
Abhishek
Subject: Use GetEntry…
Set aEntry = notesACL.GetEntry(“YourEntry”)If aEntry is Nothing Then
Set aEntry = notesACL.CreateACLEntry(“YourEntry”, 6)
End If
Subject: RE: Use GetEntry…
Hey Thanks Buddy It Helped !
Abhishek