Click here to Skip to main content
15,883,751 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
hello,people.. in console ,there are different things that we do,like printing the values but what should we do if we want to put the timer for changing the values.suppose in program john has 5 five values in array[]={1,2,3,4,5) and after debugging,number 1 pops up and for number 2 it should take like 30 second or so on..well,just thing is ,there we should be able to put timer between the values we print???
Posted

Use the CreateWaitableTimer[^] function.
Also take a look at Using Waitable Timer Objects[^]
 
Share this answer
 
Create a thread and Sleep for a specified time and execute the job


void ThreadProc( void *pdata)
{
// Work with a task

/// Timer to work like a timer.
Sleep( 100 )
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900