Hallo,
habe ein Problem mit item.Contains folgende Fehlermeldung wird angezeigt: Object variable not set
Das Feld CALLERNUMBER ist eine Textliste.
Sub Initialize
On Error Goto ErrorHandler
Dim result As Integer
Dim anzahl As Integer
Dim s As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim item As NotesItem
Set db = s.CurrentDatabase
Set view = db.GetView( "($Inbox)" )
anzahl = 0
Set doc = view.GetFirstDocument
While Not(doc Is Nothing)
Set item = doc.GetFirstItem( "CALLERNUMBER" )
If item.Contains("Ok") Then ==== > hier kommt die Fehlermeldung
anzahl = anzahl + 1
End If
Set doc = view.GetNextDocument(doc)
Wend
......
hättet Ihr einen Tipp für mich.
Gruß Skywook