I have added a menu item to the SystemMenu of the console window of my application which i created using the AllocConsole() function. but I could not figure out how to process the events for the menu items I've added.

How can i process those menu events?

Thank you

link|improve this question

75% accept rate
feedback

1 Answer

Did you try overriding window proc of the console window? ie once you have obtained the window handle with GetConsoleWindow and then hooked its window proc with SetWindowLongPtr, you have to listen the WM_SYSCOMMAND message. See this article on how to process menu items from system menu.

link|improve this answer
Yeah i tried that.But i get an ERROR_ACCESS_DENIED when i try to subclass the console window – NightCoder Mar 4 '10 at 5:48
According to this message groups.google.com/group/comp.os.ms-windows.programmer.win32/msg/…, you can't subclas console window. Also you can try using a window hok msdn.microsoft.com/en-us/library/ms644959%28VS.85%29.aspx. The last option is to override the window proc using a trampoline, but I think that doing this is too far, just for adding a few menuitems. – Ismael Mar 4 '10 at 14:30
+1 Thanks.I shall try windows hooks – NightCoder Mar 5 '10 at 5:46
feedback

Your Answer

 
or
required, but never shown

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