LOTUSSCRIPT/COM/OLE CLASSES


Examples: Remove method
This script removes the Sales Leads view from the current database.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Set db = session.CurrentDatabase
Set view = db.GetView( "Sales Leads" )
Call view.Remove

See Also