... hab ich mal in grauer Vorzeit gebastelt als Krücke:
Dim richText As New NotesRichTextItem(docnew,"richText")
Dim rtpStyle As NotesRichTextParagraphStyle
Dim pos As Long
Dim interval As Long
Set rtpStyle = session.CreateRichTextParagraphStyle
Call rtpStyle.SetTabs(5, 567*3 , 567*4 , 2)
Call richText.AppendParagraphStyle(rtpStyle)
Forall i In doc.Items
strfeldname = i.Name
If strfeldname <> "$Fonts" And strfeldname <> "Kontaktmail" And strfeldname <> "DawText" And strfeldname <> "Druck" And strfeldname <> "Sonstiges" Then
Set item = doc.GetFirstItem( i.Name )
Forall v In item.Values
itemtype = item.Type
subj = doc.GetItemValue( i.Name )
Call richText.AppendText( "Feld : " & strfeldname)
Call richText.AddTab(2)
'Call richText.AddNewLine( 1 )
Call richText.AppendText( "Inhalt : " & v )
Call richText.AddNewLine( 1 )
Call richText.AppendText( "Typ : " & itemtype)
Call richText.AddNewLine( 2 )
End Forall
End If
End Forall