LOTUSSCRIPT/COM/OLE CLASSES


Examples: FileName property
This script gets the file name and title of the current database.

Sub Initialize
 Dim session As New NotesSession
 Dim db As NotesDatabase
 Set db = session.CurrentDatabase
 Messagebox db.FileName,, db.Title
End Sub

See Also