例: すべての文書とすべての未処理の文書を収集する

  1. 次の例では、NotesDatabase の AllDocuments プロパティを使用してデータベースのすべての文書を収集し、NotesDocumentCollection の GetFirstDocument メソッドと GetNextDocument メソッドを使用して、収集した文書を順に表示します。
    Sub Initialize
      Dim session As New NotesSession
      Dim db As NotesDatabase 
      Dim dc As NotesDocumentCollection
      Dim doc As NotesDocument
      Set db = session.CurrentDatabase
      Set dc = db.AllDocuments
      Set doc = dc.GetFirstDocument()
      While Not(doc Is Nothing)
        Messagebox doc.Subject(0)
        Set doc = dc.GetNextDocument(doc)
      Wend
    End Sub
  2. 次の例では、NotesDatabase の AllDocuments プロパティを使用してデータベースのすべての文書を収集し、NotesDocumentCollection の GetFirstDocument メソッドと GetNextDocument メソッドを使用して、収集した文書を順に表示します。GetLastDocument メソッドと GetPrevDocument メソッドを使用して、最後の文書から順に表示することもできます。
    Sub Initialize
      Dim db As New NotesDatabase _
      ("", Inputbox("Name of database file?"))
      Dim dc As NotesDocumentCollection
      Dim doc As NotesDocument
      Set dc = db.AllDocuments
      Set doc = dc.GetFirstDocument()
      While Not(doc Is Nothing)
        Messagebox doc.Subject(0)
        Set doc = dc.GetNextDocument(doc)
      Wend
    End Sub
  3. 次の例では、NotesDatabase の AllDocuments プロパティを使用してデータベース内のすべての文書を収集し、NotesDocumentCollection の GetDocument メソッドを使用して文書を取り出して文書 ID を表示します。
    Sub Initialize
      Dim session As New NotesSession
      Dim db As NotesDatabase
      Dim db2 As New NotesDatabase(local, "test2.nsf")
      Dim collection As NotesDocumentCollection
      Dim docA As NotesDocument
      Dim docB As NotesDocument
      Set db = session.CurrentDatabase
      Set collection = db.AllDocuments
      Set docA = collection.GetFirstDocument
      Set docB = collection.GetDocument(docA) 
      Messagebox "Note ID: " & docB.NoteID
    End Sub