Examples: FilePath property (NotesDatabase - LotusScript)

This button displays the title and path of the current database.

Sub Click(Source As Button)
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Set db = session.CurrentDatabase
	Messagebox db.Title,, db.FilePath
End Sub