Hello
Does exist some simple way how to do it?
Thanks
Printable View
Hello
Does exist some simple way how to do it?
Thanks
Simple way? No. To the best of my knowledge, you would have to create a tooltip window by code, grab the window handle of the displayed menu, then get the dimensions/location of the menu item. With that info, you can tell the tooltip to show when the mouse is over that area.
Idea. Without subclassing, I believe this can be done with a hook (somewhat advanced). The hook would be established just prior to the menu being displayed, it would look for the menu class being created/displayed, get the hWnd, then menu APIs would be used to get the other information. This can be done with subclassing, but requires even more experience since subclassing is not easy for those unfamiliar with it.