| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 465 人关注过本帖
标题:[求助]text中的查找问题
取消只看楼主 加入收藏
wzq8037
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-7-23
收藏
 问题点数:0 回复次数:1 
[求助]text中的查找问题

Dim selt As String
Private Sub Command1_Click()
If Text1.SelLength > 0 Then
stt = CStr(Text1.Text)
If Text1.SelStart = 0 Then
selt = Left(stt, Text1.SelLength)
Else
selt = Mid(stt.Text1.SelStart, Text1.SelLength)
End If
Command2.Enabled = True
End If
End Sub

Private Sub Command2_Click()
Text1.Text = Left(Text1.Text, Text1.SelStart) + Right(Text1.Text, Len(Text1.Text) - Text1.SelStart - Len(selt))
Command2.Enabled = False

End Sub

Private Sub Command3_Click()
Text1.Text = Left(Text1.Text, Text1.SelStart) + selt + Right(Text1.Text, Len(Text1.Text) - Text1.SelStart)

End Sub

Private Sub Command4_Click()
Dim search As String
Dim pos As Integer
search = InputBox("输入需要查找字符:")
pos = InStr(Text1.Text, seach)
If pos Then
Text1.SelStart = pos - 1
Text1.SelLength = Len(search)
Text1.SetFocus
Else
MsgBox "找不到你想找的字符."
End If

End Sub

上面是一个记事本的代码,但查找功能不能实现,请问哪里出现问题?

搜索更多相关主题的帖子: text 
2007-04-06 01:45
wzq8037
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-7-23
收藏
得分:0 
Private Sub Command4_Click()
Dim search As String
Dim pos As Integer
search = InputBox("输入需要查找字符:")
pos = InStr(Text1.Text, seach)
If pos > 0 Then
Text1.SelStart = pos - 1
Text1.SelLength = Len(search)
Text1.SetFocus
Else
MsgBox "找不到你想找的字符."
End If

已经改为上面的代码,但输入查找字符时,查找结果始终显示文段起始字符
2007-04-06 20:44
快速回复:[求助]text中的查找问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015567 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved