The MASM Forum

General => The Workshop => Topic started by: clamicun on May 27, 2019, 11:09:24 PM

Title: How to create menubar tooltips, if possible
Post by: clamicun on May 27, 2019, 11:09:24 PM
;How to make this example working with tooltips on the menubar ?


Title: Re: How to create menubar tooltips, if possible
Post by: aw27 on June 01, 2019, 04:38:10 PM
(https://www.dropbox.com/s/f8m6wuk1sq8gr5a/menubartooltip.gif?dl=1)

It is possible, but not usual. In general menu tips go to the status bar.
There are at least 2 ways, intersect WM_NCMOUSEMOVE or intersect WM_MENUSELECT.
But things are a little complicated for items on the menubar (easier for the drop-down items).
I am not going to elaborate on this but is a good exercise to try to do.
Title: Re: How to create menubar tooltips, if possible
Post by: jj2007 on June 01, 2019, 09:28:40 PM
Quote from: AW on June 01, 2019, 04:38:10 PMIt is possible, but not usual. In general menu tips go to the status bar.

Correct, but you probably mean the toolbar.
Title: Re: How to create menubar tooltips, if possible
Post by: Tedd on June 01, 2019, 11:01:28 PM
Quote from: jj2007 on June 01, 2019, 09:28:40 PM
Correct, but you probably mean the toolbar.

No, statusbar - temporarily switching to SB_SIMPLE for displaying the help message.
Title: Re: How to create menubar tooltips, if possible
Post by: Butter64 on September 17, 2019, 11:52:56 AM
Great topic! Tool tips are great.