.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: AddCertifierToAddressBook method
This agent adds a record for CERT2.ID to the Domino Directory on AceOne.

Sub Initialize
 Dim session As New NotesSession
 Dim reg As New NotesRegistration
 reg.RegistrationServer = "AceOne"
 reg.StoreIDInAddressBook = True
 Call reg.AddServerToAddressBook( _
 "c:\NotesAdministrator\cert2.id", _ ' ID file
 "AceHardware", _ ' certifier password
 "", _ ' location field
 "") ' comment field
End Sub

See Also