I'm writing to a RichTextBox using the with command:

Code:
With RichTextBox
  .AppendText("blablabla" & vbCrLf)
  .ScrollToCaret()
End With
But sometimes I would like to overwrite what I've just written instead of writing it on the next line. Is there a way to do this?