Not strictly speaking. But you can pop a small message box describing the button by using the MouseMove event:
Code:
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
MsgBox ("This button does blah blah blah.")
End Sub
If you decide to go that route you will have to figure out a way to supress it after the first popup so it doesn't become an annoyance. Perhaps a global variable that you put the timestamp into so it cant display more than once every 5 seconds. . .
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.