I don't think that you can change the color of a label. You can change the control's backcolor this way:
Private Sub Record_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.TextBox.Backcolor = 12775
End Sub
However, you can put another label on top of your original label, set it to not visible and change its backcolor to what you want, and do some code like this:
Private Sub Record_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.Label1.Visible True
Me.Label2.Visible False
End Sub
HTH,
jbehrne
If at first you don't succeed, call in an airstrike. - Murphy's Laws of Combat Operations