I have a textbox with the following (important) properties:
this.license.Multiline = true; this.license.ReadOnly = true; this.license.ScrollBars = System.Win
Very Easy Solution
Find a Label and into the textbox go to mousedown event and set focus to the label
This is in VB and can be easily converted into C#
Private Sub RichTextBox1_MouseDown(sender As Object, e As MouseEventArgs) Handles RichTextBox1.MouseDown Label1.Focus() End Sub