.

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: IsClusterReplication property
This agent toggles cluster replication for a database.

Sub Initialize
 Dim db As New NotesDatabase("Cathedral/OurServer",   "RSmithTest\TestMarkForDelete.nsf")
 If db.IsOpen Then
   If db.IsClusterReplication Then
     db.IsClusterReplication = False
   Else
     db.IsClusterReplication = True
   End If
   Messagebox db.IsClusterReplication,, _
   "Cluster replication is now ..."
 Else
   Messagebox "Could not open",, "TestMarkForDelete.nsf"
 End If
End Sub

See Also