Examples: Created property (NotesView - LotusScript)

This script gets the date that the Main View in WALNUT.NSF was created, and displays it in a dialog box. For example, the script might display 10/22/96 09:07:22 AM.

server$ = "Communications"
dbfile$ = "corpcomm\walnut.nsf"
Dim db As New NotesDatabase( server$, dbfile$ )
Dim view As NotesView
Set view = db.GetView( "Main View" )
Messagebox( view.Created )