展开全部
Find的返回值就是你要找的字符串在富文本中的位置。
以下代码会高亮显示找到的字符串:
Dim s As String, n As Long
s = InputBox("请输入要查找的字符串")
If s <> "" Then
n = RichTextBox1.Find(s)
If n > 0 Then
RichTextBox1.SetFocus
RichTextBox1.SelStart = n
RichTextBox1.SelLength = Len(s)
End If
End If
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询