I have a rich text control with the following code:

With RtfBox
.SelStart = 10
.SelLength = 5
.SelColor = vbRed
.Text = .Text & "text"
End With

The problem is: after I add another text I loose the previous format.

Thanks.