How to setup a timer?

Answers were Sorted based on User's Feedback



How to setup a timer?..

Answer / arvin

The SetTimer function creates a timer with the specified
time-out value.

Syntax
UINT_PTR SetTimer(
HWND hWnd,
UINT_PTR nIDEvent,
UINT uElapse,
TIMERPROC lpTimerFunc
);
Example:
SetTimer(1, 200, 0);

Is This Answer Correct ?    2 Yes 0 No

How to setup a timer?..

Answer / kamal

SetTimer(1, 10000, NULL);

Enter this function OnInitDialog()

Is This Answer Correct ?    0 Yes 0 No

How to setup a timer?..

Answer / kishore kumar naik p

We can set the timer using SetTimer method, this method
posts WM_TIMER message after every 'X' seconds configured,
The message will be placed in the message queue of the
application and application takes little time to take the
message and process so these are not accurate.

For accurate timers we have Multimedia timers,

To start a multimedia timer we can use

MMRESULT timeSetEvent(
UINT uDelay,
UINT uResolution,
LPTIMECALLBACK lpTimeProc,
DWORD_PTR dwUser,
UINT fuEvent
);

To kill a multimedia timer
MMRESULT timeKillEvent(
UINT uTimerID
);

Refers MSDN for more

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MFC Interview Questions

What is CALLBACK? How it work? what is the advantage of CALLBACK, please explain with an example

6 Answers  


1)How to change the size of a button at run time ?

1 Answers  


I want recent paper pattern for HP company?

1 Answers   HP,


What is a critical section and how is it implemented?

2 Answers  


is it possible to display a window .without using windowclass

1 Answers   E Logic,


how do u identify RTTI in vc++

4 Answers   Siemens,


How to update all the views whenver document got updated ?

1 Answers  


2.create for 10 batch: Employee_Number Employee_name Employee_Dateofjoining Employee_address Employee_salary 1.select the employee name who deriving more than 10 thousand salary and joined before august 08. use structure and pointers

1 Answers   TCS,


1) How do you Destroy a Dialog Box ?

2 Answers   Honeywell,


What is the difference between GetMessage and PeekMessage ?

3 Answers  


Tell me the different controls in MFC ?

5 Answers  


Which MFC function is used to display output?

9 Answers   TCS,


Categories