Dim db As New NotesDatabase _
( "Ankara", "current\projects.nsf" )
Dim view As NotesView
Dim doc As NotesDocument
Set view = db.GetView( "Open\By Due Date" )
Set doc = view.GetFirstDocument
While Not ( doc Is Nothing )
......
....
Set doc = view.GetNextDocument( doc )
Wend
Wie gehe ich an diese Sache ran ?
Nun möchte ich innerhalb der Coll alle Dokumente mit demDie Anzahl steht schon in den Eigenschaften der Collection.
Feld Fehlerart zählen.
Wobei ich aber nicht den Suchbegriff kenneJa, was denn jetzt ? Suchen oder zählen ?
Ich bekomme das Zählen der Dokumente nicht hin.Also doch Zählen ? Dann siehe 1. Antwort.
Listvariablen sind aber etwas ganz anderes, Klaus ...Ja, ja , ok sagen wir Array.
Dann sagst Du zu einem Gullideckel vermutlich auch Eierlöffel ;DZitatListvariablen sind aber etwas ganz anderes, Klaus ...Ja, ja , ok sagen wir Array.
A list is a one-dimensional collection of elements of the same data type. You can change the size of a list at any time while the application is running and LotusScript does not allocate any storage space at compile time for the elements of a list. Lists automatically shrink or grow when elements are deleted from or added to them. You access each element in a list by a unique String value, called a list tag.
Wenn das richtig ist ...
Wie erstelle ich die Liste innerhalb der While Schleife