In MFC I'm trying to set a null handler timer (ie. no windows). But I'm unable to process the WM_TIMER event in the CWinApp MESSAGE_MAP. Is this possible? If so, how?
|
|
As told by MSDN, there are two modes of operation for Catching timer messages in the thread queue
This will create a new timer, set to fire every two seconds, associated only with the current thread's message queue. You don't get to specify a timer ID when you aren't associating it with a window, so save the ID returned in a class member or something - you'll have a rough time killing the timer later on if you forget. You could then process this in a
Note that hooking into the thread's message loop like this is the only way to handle a timer set up this way - as we discussed, there's no window, and although MFC does provide a message map facility for Handling timer messages with a callback
This does almost exactly the same thing as the first example: a new timer is configured to fire every two seconds, associated with the current thread's message queue... but this one has a callback address associated with it. And the default message handler knows to call the callback when such a timer message is processed, so you don't have to bother hooking into the message loop. So there you go. Two ways of using timers from |
|||
|
|
|
|
I've done this by making an invisible window and setting a timer on it. |
||
|
|
|
|
Check out this post by Eric Raymond. There are some interesting nuggets for what your working on that might keep you out of trouble. Why your thread is spending all its time processing meaningless thread timers |
||
|
|
|
|
While I second Shog9's answer, I have to ask: Where does the requirement come from? Why is it a problem to associate your timer with a window? |
||
|
|
