.

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: IsOpen property
This script attempts to open TODO.NSF on the server Bombay. If the database is found, it is opened, and IsOpen returns True. If the database is not found (for example, because it doesn't exist), IsOpen returns False.

Dim db As New NotesDatabase( "Bombay", "todo.nsf" )
If db.IsOpen Then
 Print( "Succesfully opened " & db.Title )
Else
 Print( "Unable to open database" )
End If

See Also