Kurz und knackig und nur als Beispiel:
| Sub Click (Source As Button) |
| |
| Dim ws As New NotesUIWorkspace |
| |
| Dim aTest (0 To 2) As String |
| |
| aTest (0) ="A" |
| aTest (1) = "" |
| aTest (2) = "B" |
| |
| ws.CurrentDocument.Document.TestArray = aTest |
| Call ws.CurrentDocument.Document.Save (True, False, True) |
| ws.CurrentDocument.Document.SaveOptions = "0" |
| Call ws.CurrentDocument.Close |
| |
| End Sub |
Resultat siehe unten. Mit dem weiteren Umgang im Frontend muss man natürlich entsprechend umgehen.
Bernhard