.

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: IsInMultiDbIndexing property
This agent toggles the setting for including the current database in multi-database indexing.

Sub Initialize
 Dim session As New NotesSession
 Dim db As NotesDatabase
 Set db = session.CurrentDatabase
 If db.IsInMultiDbIndexing Then
   db.IsInMultiDbIndexing = False
   Messagebox "Do not include in multi-db indexing",, _
   "Multi-db indexing"
 Else
   db.IsInMultiDbIndexing = True
   Messagebox "Include in multi-db indexing",, _
   "Multi-db indexing"
 End If
End Sub

See Also