Sub Click(Source As Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim dc As NotesDocumentCollection
Dim doc As NotesDokument
Set db = session.CurrentDatabase
Set view = db.GetView( "A1" )
Set dc = view.GetAllDocumentsByKey("A_USER")
Set doc = dc.GetFirstDocument()
While Not(doc Is Nothing)
Call doc.ReplaceItemValue("Status", "7")
Call doc.Save( True, False )
Set doc = collection.GetNextDocument(doc)
Wend
End Sub
Habe das Script jetzt so geändert.
Kann aber leider declare nicht einschalten, da das Script sich nicht speichern lässt.
Class or Type not found: Notesdocument
Tut mir leid, wenn ich so oft nachfargen muss. Hoffe ich komme bald dahinter!
Danke