keep a formless application from closing for a keyboard hook - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:32:37Zhttp://stackoverflow.com/feeds/question/390789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook1keep a formless application from closing for a keyboard hookworkinprogress2008-12-24T05:02:09Z2009-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-4Answer by Lodle for keep a formless application from closing for a keyboard hookLodle2008-12-24T06:43:24Z2008-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#3910976Answer by Serge for keep a formless application from closing for a keyboard hookSerge2008-12-24T09:35:26Z2008-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#4100600Answer by workinprogress for keep a formless application from closing for a keyboard hookworkinprogress2009-01-03T23:02:29Z2009-01-03T23:02:29Z<p>Thank you!</p>