VB.Net - Event Handling
Posted by Superadmin on October 31 2015 17:45:35

Clicking on a button, or entering some text in a text box, or clicking on a menu item, all are examples of events. An event is an action that calls a function or may cause another event.


Event handlers are functions that tell how to respond to an event.


VB.Net is an event-driven language. There are mainly two types of events:



Handling Mouse Events


Mouse events occur with mouse movements in forms and controls. Following are the various mouse events related with a Control class:



The event handlers of the mouse events get an argument of type MouseEventArgs. The MouseEventArgs object is used for handling mouse events. It has the following properties:



Example


Following is an example, which shows how to handle mouse events. Take the following steps:




Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Set the caption bar text of the form.
Me.Text = "tutorialspont.com"
End Sub

Private Sub txtID_MouseEnter(sender As Object, e As EventArgs)_
Handles txtID.MouseEnter
'code for handling mouse enter on ID textbox
txtID.BackColor = Color.CornflowerBlue
txtID.ForeColor = Color.White
End Sub
Private Sub txtID_MouseLeave(sender As Object, e As EventArgs) _
Handles txtID.MouseLeave
'code for handling mouse leave on ID textbox
txtID.BackColor = Color.White
txtID.ForeColor = Color.Blue
End Sub
Private Sub txtName_MouseEnter(sender As Object, e As EventArgs) _
Handles txtName.MouseEnter
'code for handling mouse enter on Name textbox
txtName.BackColor = Color.CornflowerBlue
txtName.ForeColor = Color.White
End Sub
Private Sub txtName_MouseLeave(sender As Object, e As EventArgs) _
Handles txtName.MouseLeave
'code for handling mouse leave on Name textbox
txtName.BackColor = Color.White
txtName.ForeColor = Color.Blue
End Sub
Private Sub txtAddress_MouseEnter(sender As Object, e As EventArgs) _
Handles txtAddress.MouseEnter
'code for handling mouse enter on Address textbox
txtAddress.BackColor = Color.CornflowerBlue
txtAddress.ForeColor = Color.White
End Sub
Private Sub txtAddress_MouseLeave(sender As Object, e As EventArgs) _
Handles txtAddress.MouseLeave
'code for handling mouse leave on Address textbox
txtAddress.BackColor = Color.White
txtAddress.ForeColor = Color.Blue
End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) _
Handles Button1.Click
MsgBox("Thank you " & txtName.Text & ", for your kind cooperation")
End Sub
End Class

When the above code is executed and run using Start button available at the Microsoft Visual Studio tool bar, it will show the following window:


Event Handling Example1

Try to enter text in the text boxes and check the mouse events:


Event Handling Result Form

Handling Keyboard Events


Following are the various keyboard events related with a Control class:



The event handlers of the KeyDown and KeyUp events get an argument of type KeyEventArgs. This object has the following properties:



The event handlers of the KeyDown and KeyUp events get an argument of type KeyEventArgs. This object has the following properties:



Example


Let us continue with the previous example to show how to handle keyboard events. The code will verify that the user enters some numbers for his customer ID and age.



When the above code is executed and run using Start button available at the Microsoft Visual Studio tool bar, it will show the following window:


VB.Net Event Example

If you leave the text for age or ID as blank or enter some non-numeric data, it gives a warning message box and clears the respective text:


VB.Net Event Example