So nach lagen ausprobieren bin ich jetzt auf die Fehlerursache gekommen ich weiß aber nicht warum das so ist:
Der Fehler ist der Code:
Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
If (Source.IsNewDoc) Then
Exit Sub
End If
Dim varLock As Variant
Dim s As New NotesSession
Dim doc As NotesDocument
Dim UserName As New NotesName(s.UserName)
Set doc=Source.Document
varLock=doc.GetItemValue("LockEdit")
If (varLock(0) <> "") And Source.EditMode Then
Msgbox ("Document is currently locked by "+varLock(0)+". A read-only copy will be opened for your use.")
Exit Sub
End If
doc.LockEdit= UserName.Common
doc.LockEditTime = Now
Call doc.Save(True,False)
End Sub
Wenn ich den auskommentiere dann passt alles und es wird das Feld angezeigt.
Leider weiß ich immer noch nicht wie ich das lösen kann.