Private Sub RichTextBox_Click()
'
On Error Resume Next
'
Dim i, n, ss
Dim SearchText As String
'
i = 0
n = 0
ss = RichTextBox.SelStart
'
If RichTextBox.SelStart < Len(RichTextBox.Text) Then
'
Do
n = InStr(i + 1, RichTextBox.Text, vbCrLf)
If ss > n Then i = n + 1
Loop While ss >= n
'
RichTextBox.SelStart = i
If n <> i Then RichTextBox.SelLength = n - i
'
If RichTextBox.SelText <> "" Then
'
Msgbox RichTextBox.SelText
'
End If
'
End If
'
End Sub
关于博主
内容正在载入中...
搜索博客文章
#Saperate
博客文章: 鼠标点击文本框,得到点击所在行的整行文本
最近发表
- 内容正在载入中...
热门文章
- 内容正在载入中...
随机文章
- 内容正在载入中...
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。