keep a formless application from closing for a keyboard hook - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:32:37Z http://stackoverflow.com/feeds/question/390789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook 1 keep a formless application from closing for a keyboard hook workinprogress 2008-12-24T05:02:09Z 2009-01-03T23:02:29Z <p>Hello, I am working on a c++ win32 program that involves a keyboard hook. The application is a win32 project with no user interface whatsoever. I need to keep the application from closing without using causing the hook to not work or use up a bunch of system resources. I used to use a message box but I need the application to be completely invisible.</p> <p>Any help would be appreciated!</p> <p>If you have any questions just ask.</p> http://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook/390917#390917 -4 Answer by Lodle for keep a formless application from closing for a keyboard hook Lodle 2008-12-24T06:43:24Z 2008-12-24T06:43:24Z <p>A better way would be to add an loop that keeps going around.</p> <pre><code>bool shouldExit = false; do { //some code to handle events shouldExit = handleEvents(); //sleep for a small bit so we dont take up 100% cpu sleep(500); } while (!shouldExit); </code></pre> http://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook/391097#391097 6 Answer by Serge for keep a formless application from closing for a keyboard hook Serge 2008-12-24T09:35:26Z 2008-12-24T10:54:26Z <p>I think what you need is <a href="http://msdn.microsoft.com/en-us/library/ms632599(VS.85).aspx#message_only" rel="nofollow">message only window</a></p> <blockquote> <p>(<strong><em>MSDN says</em></strong>) A message-only window enables you to send and receive messages. It is not visible, has no z-order, cannot be enumerated, and does not receive broadcast messages. The window simply dispatches messages.</p> </blockquote> http://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook/410060#410060 0 Answer by workinprogress for keep a formless application from closing for a keyboard hook workinprogress 2009-01-03T23:02:29Z 2009-01-03T23:02:29Z <p>Thank you!</p>