MouseOut example
Example for MouseOut event
Private Sub Form1_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
cAvax1.StartAvax()
End Sub
Private Sub Form1_FormClosed(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
cAvax1.EndAvax()
End Sub
Private Sub cAvax1_MouseIn() Handles CAvax1.MouseIn
CAvax1.BackColor = System.Drawing.Color.White
End Sub
Private Sub cAvax1_MouseOut() Handles CAvax1.MouseOut
CAvax1.BackColor = System.Drawing.Color.Red
End Sub