IF I wanted to change the text inside of a RichTextBox on the click of a button. What code do I need?
So far I have:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
RichTextBox1.Text(???? What goes here? because I'm getting Property access must assign to the property or use its value)
End Sub
End Class