LOTUSSCRIPT/COM/OLE CLASSES
Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim collection As NotesDocumentCollection Dim doc As NotesDocument Set db = session.CurrentDatabase Set collection = db.FTSearch("white wine", 0) Set doc = collection.GetFirstDocument() Call collection.AddDocument(doc) End Sub
See Also