As the title says, is it possible to excecute a line of code when your mouse is over a label, then when it's moved outside the label? I succeded to run a line of code by having your mouse over the label.

Code:
Private Sub Label6_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label6.Caption = "-Exit-" 'the label was first "Exit". It's like making a label to a button.
End Sub
If you know how to run a code when the mouse is outside the label, please reply back. Thanks!