Ich habe nicht viel Zeit - der Grill wartet
Sub Click(Source As Button)
Dim ws As New notesuiworkspace
Dim uidoc As NotesUIDocument
Dim s As New notessession
Dim db As notesdatabase
Dim olddoc As notesdocument
Dim newdic As notesdocument
Set uidoc = ws.CurrentDocument
Set olddoc = uidoc.Document
olddoc.Status = "Aktenlager"
olddoc.Aktenort = "Aktenlager"
call uidoc.Reload
Call uidoc.Save
Set db = s.getdatabase ("S155LN03","Kredit\Aktenanforderung (Archiv).nsf")
Set newdoc = olddoc.copytodatabase(db)
Call uidoc.close
End Sub