LOTUSSCRIPT/COM/OLE CLASSES


Examples: Remove method
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

See Also