Sub Querysave(Source As Notesuidocument, Continue As Variant) ' # Mit Grundkurs in schwäbisch... Dim doc As NotesDocument Set doc = Source.Document If doc.HasItem("Anrede") Then Print "Hod a Feld Ôhred..." doc.RemoveItem("Anrede") Call doc.Save( True , True ) If doc.HasItem("Anrede") Then Print "Hods no..." Else Print "Hods nemme!" End If End If End Sub