Examples: FileName property (NotesDatabase - LotusScript)
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