Examples: Remove method (NotesDatabase - LotusScript®)

This script deletes BYEBYE.NSF if it has not been modified in the last 100 days.

Dim db As New NotesDatabase( "", "byebye.nsf" )
If ( ( Today - db.LastModified ) > 100 ) Then
  Call db.Remove
End If