sorry, ich habe keine plan wovon du sprichst
Bin noch etwas neu in Notes. Ich will es jetzt so machen:
1. Ich markiere die nötigen Dokumente.
2. ich öffne eine Dialogbox, in der dialogbox wird über @dbcolmun eine Spalte ausgelesen mit fixen ausgelesen.
3. über ein button will ich nun das zeuch in ein Feld schreiben.
Sub Click(Source As Button)
Dim w As New notesuiworkspace
Dim doc As notesuidocument
Set doc = w.currentdocument
Set col = cdb.unprocesseddocuments
Set cdoc = col.getfirstdocument
Call doc.FieldAppendText("sw_update", "Es wurde folgendes Software Update eingespielt:" +Chr(10)+"sw")
Call doc.FieldSetText("sw","")
Call cdoc.Save(True, False)
Set cdoc = col.getnextdocument( cdoc)
End Sub
nur irgend wie macht er es einfach nicht....