VC里有没有等待5秒,10秒的涵数?怎么用?

解决方案 »

  1.   

    SETTIMER()/KILLTIMER()CreateTimerQueueTimer()
      

  2.   

    SETTIMER()/KILLTIMER()CreateTimerQueueTimer()怎么用?
      

  3.   

    好多呢Sleep(5*1000);//等待5秒(5000毫秒)
      

  4.   

    SETTIMER()/KILLTIMER()CreateTimerQueueTimer()怎么用?
      

  5.   

    Sleep
    The Sleep function suspends the execution of the current thread for a specified interval. VOID Sleep(
      DWORD dwMilliseconds   // sleep time in milliseconds
    );
     
    Parameters
    dwMilliseconds 
    Specifies the time, in milliseconds, for which to suspend execution. A value of zero causes the thread to relinquish the remainder of its time slice to any other thread of equal priority that is ready to run. If there are no other threads of equal priority ready to run, the function returns immediately, and the thread continues execution. A value of INFINITE causes an infinite delay. 
    Return Values
    This function does not return a value. 
      

  6.   

    Sleep or settimer or CreateTimerQueueTimer
      

  7.   

    WaitForSingleObject
    The WaitForSingleObject function returns when one of the following occurs: The specified object is in the signaled state. 
    The time-out interval elapses. 
    To enter an alertable wait state, use the WaitForSingleObjectEx function. To wait for multiple objects, use the WaitForMultipleObjects. DWORD WaitForSingleObject(
      HANDLE hHandle,        // handle to object
      DWORD dwMilliseconds   // time-out interval
    );
    Parameters
    hHandle 
    [in] Handle to the object. For a list of the object types whose handles can be specified, see the following Res section. 
    If this handle is closed while the wait is still pending, the function's behavior is undefined. Windows NT/2000/XP: The handle must have SYNCHRONIZE access. For more information, see Standard Access Rights. dwMilliseconds 
    [in] Specifies the time-out interval, in milliseconds. The function returns if the interval elapses, even if the object's state is nonsignaled. If dwMilliseconds is zero, the function tests the object's state and returns immediately. If dwMilliseconds is INFINITE, the function's time-out interval never elapses.