Private Sub Label2_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _ByVal X As Single, ByVal Y As Single)
If Label2.BackStyle = fmBackStyleTransparent Then
Label2.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub Label3_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
If Label3.BackStyle = fmBackStyleTransparent Then
Label3.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub Label4_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
If Label4.BackStyle = fmBackStyleTransparent Then
Label4.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub cmdIn_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
If cmdIn.BackStyle = fmBackStyleTransparent Then
cmdIn.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub cmdInSQ_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
If cmdInSQ.BackStyle = fmBackStyleTransparent Then
cmdInSQ.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub cmdThoat_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
If cmdThoat.BackStyle = fmBackStyleTransparent Then
cmdThoat.BackStyle = fmBackStyleOpaque
End If
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
If Label2.BackStyle = fmBackStyleOpaque Then
Label2.BackStyle = fmBackStyleTransparent
ElseIf Label3.BackStyle = fmBackStyleOpaque Then
Label3.BackStyle = fmBackStyleTransparent
ElseIf Label4.BackStyle = fmBackStyleOpaque Then
Label4.BackStyle = fmBackStyleTransparent
ElseIf cmdIn.BackStyle = fmBackStyleOpaque Then
cmdIn.BackStyle = fmBackStyleTransparent
ElseIf cmdInSQ.BackStyle = fmBackStyleOpaque Then
cmdInSQ.BackStyle = fmBackStyleTransparent
Else
cmdThoat.BackStyle = fmBackStyleOpaque
cmdThoat.BackStyle = fmBackStyleTransparent
End If
End Sub