I have very simple code, when mouse moves OVER the control (EmpMobileNo), then the label is visible showing information.
How would I code it so that when the mouse moves OFF the control, the label will not be visible??
Private Sub EmpMobileNo_MouseMove(Button As Integer, Shift As Integer, x As Single, Y As Single)
Me.lblInfo.Caption = Me.EmpMobileNo
Me.lblInfo.Visible = True
End Sub
Thx
Darin
How would I code it so that when the mouse moves OFF the control, the label will not be visible??
Private Sub EmpMobileNo_MouseMove(Button As Integer, Shift As Integer, x As Single, Y As Single)
Me.lblInfo.Caption = Me.EmpMobileNo
Me.lblInfo.Visible = True
End Sub
Thx
Darin