GetOutline ist Dein Freund!Thomas
Dim nc As NotesNoteCollection Set nc = db.CreateNoteCollection(False) Call nc.SelectAllDesignElements(false) nc.SelectOutlines = True Call nc.BuildCollectionirgendwie so ( details siehe Designer Hilfe )
türlich kannst du das. Du musst dir nur die Documente die zurückgeliefert werden etwas genauer anschauen.
Hallo AsimHier der Tip:Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim nc As NotesNoteCollection Dim strNoteId As String Dim docOutline As NotesDocument Set db=session.CurrentDatabase Set nc = db.CreateNoteCollection(False) nc.SelectAllDesignElements False nc.SelectOutlines = True nc.BuildCollection strNoteID=nc.GetFirstNoteId Do Until strNoteID="" Set docOutline=db.GetDocumentByID(strNoteID) Msgbox docOutline.getitemvalue("$Title")(0) strNoteID=nc.GetNextNoteId(strNoteID) LoopEnd SubGrussRemo