LOTUSSCRIPT/COM/OLE CLASSES


Examples: IsMultiDbSearch property
This example displays the status of IsMultiDbSearch.

Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
If db.IsMultiDbSearch Then
 Messagebox "Is On",, "MultiDbSearch"
Else
 Messagebox "Is Off",, "MultiDbSearch"
End If

See Also