Wer kann mir verraten wie ich an die einträge aus der log.nsf rankomme ?
(Ich brauche einen Filter für Zugriffsverlezungen)
Code bsp:
Dim nSession As NotesSession
Dim nDB As NotesDatabase
Dim nCollection As NotesDocumentCollection
Dim icount As Integer
Dim nDoc As NotesDocument
Dim nitem As NotesItem
Set nSession=New NotesSession
Set nDB = nSession.CurrentDatabase
Set nCollection = ndb.UnprocessedDocuments
For iCount=1 To nCollection.count
Set nDoc=nCollection.GetNTHDocument(icount)
If ndoc.HasITem("Events") Then
Set nitem=ndoc.getFirstItem("Events")
' nitem.text (leer)
' nItem.Value - leer
End If
Next