How to write in a rich textbox?

You set the Text property.

RichTextBox.Text = "Whatever string you want to show the user"

Or:
Dim SomeVar As String = "Something, yada yada"
RichTextBox.Text = SomeVar
 
Back
Top