请斑竹和各位仁兄帮忙看看!!
看 Private Sub Form_Click() Dim Search, Where ' 声明变量。 ' 获取需要查找的字符串。 Search = InputBox("Enter text to be found:") Where = InStr(Text1.Text, Search) ' 在文本中查找字符串。 If Where Then ' 如果找到, Text1.SelStart = Where - 1 ' 设置选定的起始位置并 Text1.SelLength = Len(Search) ' 设置选定的长度。 Else MsgBox "String not found." ' 给出通知。 End If
End Sub
Private Sub Form_Load() Text1.Text = "Two of the peak human experiences" Text1.Text = Text1.Text & " are good food and classical music."
End Sub .............(成立) 但是 若把form_click 换成 command1_click就不能正确运行结果! 为什么?