vote up 1 vote down star
1

I'd like to write a utility in the vein of PowerMenu - it adds some extra stuff into all applications' window menus (alt-space, that menu).

How does one go about doing this?

flag

1  
Just please try to avoid putting your menu items at the bottom. There's nothing I hate more than apps like HTML Help that puts an "About" menu where I instinctively expect Close to be. – Josh Einstein Dec 3 at 18:31
Don't worry, that drives me crazy too. – Blorgbeard Dec 3 at 23:38

3 Answers

vote up 1 vote down check
  1. Inject some code to each window's process.
  2. Use GetSystemMenu() in the hook to retrieve that windows "alt-space" menu
  3. Make your modifications
  4. Cleanup

I'd personally use SetWindowsHookEx(), WH_CALLWNDPROC, and a CallWndProc to achieve step 1, requiring a call to UnhookWindowsHookEx() in step 4, and bit of custom message pumping to get step 2 rolling. That's just personal preference though.

link|flag
vote up 0 vote down

It's a classic code posted ~14 years ago on google (groups)
See Win32 grp for official method (MS, with hooks)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.