Ich habe mal wieder ein Problem, über dem ich schon länger vergeblich brüte. Habe ein Script geschrieben, das eine Auswahl an Dokumenten als exportiert kennzeichnet und die Anzahlder Exporte festhalten soll. Die Markierung als exportiert klappt wunderbat, nur wird das Feld exportiert_Anzahl immer mit " 1" gefüllt. Woran kann das liegen bzw. wie funzt es richtig?
Sub Indikator
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Dim exportiert As String
Dim exportiert_Anzahl As String
Set db = session.CurrentDatabase
Set collection = db.UnprocessedDocuments
If (collection.Count > 0) Then
Set doc = collection.GetFirstDocument
While Not (doc Is Nothing)
doc.exportiert = "1"
doc.exportiert_Anzahl = Str(Val(exportiert_Anzahl)+1)
Call doc.Save( True, True )
Set doc = collection.GetNextDocument(doc)
Wend
Call collection.UpdateAll
Call workspace.viewRefresh
Else
Msgbox "Nix gefunden..."
End If
End Sub