Hi
OK, try this approach. To test, in an existing project which already has some highly formatted text in a RichTextBox1, I added a Button4 and this code. Works OK and may be what you are asking for. I put the text to be inserted into a variable to show the code more clearly.
BTW: when you post code, just copy and paste into your message here and it will show up in a proper code box (like below).
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
Dim s As String = "Manuel graphics time " & " data 1 " & " at " & " data 2 " & " / h 0:05 - € 5,00" & vbCrLf & "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" & vbCrLf
With RichTextBox1
.SelectAll()
.Copy()
.Text = s
.SelectionStart = .TextLength
.Paste()
End With
End Sub