I'm trying to change the selection behaviour of a double click in a text box to select the entire text
tried this code:
this should select the entire text in the text box. it works for a click event, but a double click will keep selecting a single word 
tried this code:
Code:
Private Sub TextBox_DblClick(Cancel As Integer)
Me.TextBox.SelStart = 0
Me.TextBox.SelLength = Len(Me.TextBox.Text)
End Sub
