Hi.
Looking for guidance on how to use mousemove event on a multipage?
Im trying to have a image as a button, and hover over changes colour.
Below code works for a userform mousemove, but can find a solution when over a multipage instead
Thanks
Looking for guidance on how to use mousemove event on a multipage?
Im trying to have a image as a button, and hover over changes colour.
Below code works for a userform mousemove, but can find a solution when over a multipage instead
Thanks
Code:
Sub ExitButtonInactive_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
ExitButtonInactive.Visible = False
End Sub
Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
ExitButtonInactive.Visible = True
End Sub