Das ist eine gute Frage, wo ich dummi nicht drauf gekommen bin. Damit habe ich die Fehlermeldung wegbekommen, aber er überschreibt das irgendwie immer noch nicht.
Fehlermeldung Server=keine
Nur wenn ich die Formname angebe, gibt es die Fehlermeldung "Objekt varable not set".
webdoc.docunid(0)=ID von notes
hier:
Dim ses As New notessession
Dim webdoc As notesdocument
Set webdoc = ses.DocumentContext
Dim suche As String
suche = webdoc.docunid(0)
Dim db As NotesDatabase
Dim PersonView As NotesView
Dim PersonDC As NotesDocumentCollection
Dim PersonDoc As NotesDocument
Set db = ses.CurrentDatabase
Set PersonView = db.GetView( "alleadressenbyUnid" )
Set PersonDC = PersonView.GetAllDocumentsByKey(suche, True)
If PersonDC.count <> 0 Then
Set PersonDoc = PersonDC.GetFirstDocument
PersonDoc.Form="Personen"
PersonDoc.forumPasswort = webdoc.forumPasswort_neu(0)
Call PersonDoc.save(True,True)
End If
Gruss
Ozan