标题:[求助]我的记事本程序无法调试通过,看看什么原因,附源代码
取消只看楼主
Hunt
Rank: 1
等 级:新手上路
威 望:1
帖 子:199
专家分:9
注 册:2004-11-23
 问题点数:0 回复次数:1 
[求助]我的记事本程序无法调试通过,看看什么原因,附源代码



Dim seach As String, where As Integer, k As Integer
Private Function find(p As Integer) As Integer
Dim n As Integer
k = Len(seach)
For i% = p To Len(Text1.Text)
If search = Mid(Text1.Text, i%, k) Then Exit For
Next i%
If i% > Len(Text1.Text) Then find = 0 Else find = i%
End Function

Private Sub cmd1_Click() '查找
Text1.SetFocus
seach = InputBox("输入需要查找的字符串", "查找")
where = find(1)
If where <> 0 Then
Text1.SelStart = where - 1
Text1.SelLength = k
Else
MsgBox "没有找到!"
End If
End Sub

Private Sub cmd2_Click() '下一个
Text1.SetFocus
If seach <> "" Then
where = find(where + 1)
If where <> 0 Then
Text1.SelStart = where - 1
Text1.SelLength = k
Else
If where = 0 Then MsgBox "没有找到"
End If
End If
End Sub

Private Sub cmd3_Click() '剪切
Clipboard.Clear
Clipboard.SetText Text1.SelText
Text1.SelText = ""
End Sub

Private Sub cmd4_Click() '复制
Clipboard.Clear
Clipboard.SetText Text1.SelText
End Sub

Private Sub cmd5_Click() '粘贴
Text1.SelText = Clipboard.GetText
End Sub

Private Sub cmd6_Click() '删除
Text1.SelText = ""
End Sub

Private Sub cmd7_Click() '清除
Text1.Text = ""
End Sub

Private Sub Cmd8_Click()
End
End Sub


大家可以看看是什么原因吗,“查找”与“下一个”功能好像无法调试通过。

搜索更多相关主题的帖子: 源代码 Integer 记事本 find 
2006-12-30 22:58
Hunt
Rank: 1
等 级:新手上路
威 望:1
帖 子:199
专家分:9
注 册:2004-11-23
得分:0 
谢谢提醒哦,确实是词打错了,这种错误最难发现了,呵呵

程序人生最高境界:“我就是程序,程序就是我。”
2006-12-31 21:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-113319-1-1.html




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

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