Results 1 to 20 of 20

Thread: How to create a tooltip text / comments with VBA

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #3
    VBAX Wizard
    Joined
    May 2004
    Posts
    6,710
    Location
    There is no MouseOver, but MouseMove acts like a mouse over.
    Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
        MsgBox "This button does yadda"
    End Sub
    Except......every time you move the mouse over the commandbutton, you get the MouseMove event, and you can sometimes not actually click the button.
    Last edited by Aussiebear; 12-07-2024 at 10:12 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •