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
Siehe auch
Removing documents from a view entry collection
Glossar
Ihre Kommentare zur
Hilfe
oder zur
Verwendbarkeit der Software
?
Hilfe zur Hilfe
Inhalt der gesamten Hilfe
Glossar