Hallo,
wie kann ich es verhindern das Notes bei diesen script immer ein semicolon anhängt.
aus Notes Hilfe:
Syntax
To get: itemText$ = notesItem.Text
Usage
Multiple values in a list are separated by semicolons in the returned string. If an item's value is large, the returned string may be truncated.
Irgend wie muss da doch das Problem liegen?
If Not doc.HasItem("new_update") Then
Set item = doc.ReplaceItemValue("new_update", zeit & " | " & user & " had added the following software update: " & response & Chr(13) & Chr(13) & Chr(10))
Else
Set item = doc.GetFirstItem( "new_update" )
Call item.Appendtotextlist(zeit & " | " & user & " had added the following software update: " & response & Chr(13) & Chr(13) & Chr(10))
Call doc.ComputeWithForm( False, False)
End If