vb中如何让文本框在处于焦点状态下时,文本框中的文本处于选中状态?

2024年12月04日 23:25
有2个网友回答
网友(1):

Private Sub Text1_GotFocus()

Text1.SelStart = 0
Text1.SelLength = Len(Text1)
End Sub

网友(2):

Private Sub Text1_GotFocus()

Text1.SelStart = 0
Text1.SelLength = Len(Text1.Text)

End Sub