This is the code I am using:
Private Sub OptionLabel1_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel1.ForeColor = vbRed
End Sub
Private Sub OptionLabel2_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel2.ForeColor = vbRed
End Sub
Private Sub OptionLabel3_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel3.ForeColor = vbRed
End Sub
Private Sub OptionLabel4_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel4.ForeColor = vbRed
End Sub
Private Sub OptionLabel5_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel5.ForeColor = vbRed
End Sub
Private Sub OptionLabel6_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel6.ForeColor = vbRed
End Sub
Private Sub OptionLabel7_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel7.ForeColor = vbRed
End Sub
Private Sub OptionLabel8_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel8.ForeColor = vbRed
End Sub
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me.OptionLabel1.ForeColor = vbBlack
Me.OptionLabel2.ForeColor = vbBlack
Me.OptionLabel3.ForeColor = vbBlack
Me.OptionLabel4.ForeColor = vbBlack
Me.OptionLabel5.ForeColor = vbBlack
Me.OptionLabel6.ForeColor = vbBlack
Me.OptionLabel7.ForeColor = vbBlack
Me.OptionLabel8.ForeColor = vbBlack
End Sub
All of the labels are the same, automatically created using switchboard manager. The first two labels are functioning corectly, nothing happens on the other six.