I also came across this, but using a tab editor with multiple RTBs. In this case, you can implement a workaround by setting the property AutoWordSelectionto Falsein the code block that creates the RichTextBox. For example:
Private Sub CreateNewRTBObject(ByVal items() As String)
Try
For Each s As String In items
If Not FilePaths.Contains(s) Then
rtb = New myRTB(s)
rtb.AutoWordSelection = False
End If
Next
tabs.SetTabWidth()
Catch ex As Exception
MsgBox(ex.ToString, MsgBoxStyle.Exclamation, title)
End Try
End Sub
source
share