Link to home
Start Free TrialLog in
Avatar of levinlll
levinlll

asked on

Tracking the mouse in a list box

I'd like to be able to set the tooltip of a list box based on the entry the mouse is over a list box. Can anyone tell me how this can be accomplished ?

Thanks !
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ListBox1.Tooltip = "My tooltip"
This seems too simple, so I may have misunderstood
Yes. It was too simple. I had misunderstood.
Private Sub List1_MouseMove()
          List1.ToolTip = "ToolTip Text here"
End Sub