Hi all
I am changing color of label on mouse move event
But my question is how to get back the previous color when mouse in not on the label
Miss I want when mouse is on the label then its color is red otherwise previous color

See my code

VB Code:
  1. Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  2. Label1.BackColor = &HFF&
  3. End Sub

help