LOTUSSCRIPT/COM/OLE CLASSES
Examples: Removing documents from a view entry collection
1. This example removes all of the documents associated with the entries in the view entry collection called Fox.
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim vc As NotesViewEntryCollection
Set db = session.Currentdatabase
Set view = db.GetView("By Category")
Set vc = view.GetAllEntriesByKey("Fox")
Call vc.RemoveAll(True)
End Sub
2. This example removes all of the documents associated with entries in a folder called Jazz.
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim vc As NotesViewEntryCollection
Set db = session.CurrentDatabase
Set view = db.GetView("By Category"
Set vc = view.GetAllEntriesByKey("Trumpet players")
Call vc.RemoveAllFromFolder("Jazz")
End Sub
Vedere anche
Removing documents from a view entry collection
Glossario
Guida sulla Guida
Contenuto completo della Guida
Glossario