I am developing MFC Dialog based application in Visual Studio 2008. I want to use timer that start on start of the application and continue to run and calls a function that performs my task? How can I do this?
Thanks
|
feedback
|
|
Just use CWnd::SetTimer takes 3 parameters, but only 2 are required. Pass third argument as NULL. | |||
|
feedback
|
|
If you want to get the basic idea of using Timers, kindly have a look at this link and go through the step by step procedure on working with timers. After this, you should be able to use timers easily in your application whenever you want. Link: http://www.functionx.com/visualc/controls/timer.htm Hope this helps. Cheers. | |||
|
feedback
|
You may want to do something like
and react to the ON_TIMER event in your window's event handler:
Alternatively you can pass a pointer to a function handling the timer events. Keeping the handle to the timer allows you to turn it off using KillTimer() in case you have to. | |||
|
feedback
|
sleep(long millisecs);, and then call whichever function you want. – Eran Zimmerman Aug 23 '11 at 7:10