Click to See Complete Forum and Search --> : multiple ticking context menu?


Emuman
September 27th, 2005, 02:14 AM
in office 2003, Add or Remove Buttons menu, the menu keeps showing even after the user clicked the menu item. this is very convenient for multiple selection.
any idea how to implement this without mfc?

kirants
September 27th, 2005, 07:37 PM
From what I see, I think they aren't menus but custom windows which look like menus.

Emuman
October 8th, 2005, 06:06 PM
thank you. anyone has other suggestions?

kkez
October 8th, 2005, 08:41 PM
You can try to handle WM_CANCELMODE and return 1 to avoid window from using the default behavior (that is stopping the menu "message loop")

Emuman
May 10th, 2006, 02:34 AM
kkez, can you please show me some example or add this behavior to the implementation of your owner drawn menu?