控件:几个文本框textbox
事件:TextBoxes_textchanged
代码:
- Private Sub TextBoxes_TextChanged(ByVal sender As System.Object, _
- ByVal e As System.EventArgs) Handles TextBox1.TextChanged, _
- TextBox2.TextChanged, TextBox3.TextChanged
- Select Case DirectCast(sender, TextBox).Name
- Case TextBox1.Name
- MsgBox("The text in the first TextBox has changed")
- Case TextBox2.Name
- MsgBox("The text in the second TextBox has changed")
- Case TextBox3.Name
- MsgBox("The text in the third TextBox has changed")
- End Select
- End Sub