Results 1 to 3 of 3

Sleep function

Threaded View

  1. #1
    Registered User
    Join Date
    07-15-2010
    Location
    usa
    MS-Off Ver
    Excel 2003
    Posts
    51

    Angry Sleep function

    I am uisng

    Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    in code to get a Loop to sleep, then restart.

    I looking to get the loop to sleep 10 milliseconds, but its costing 150 to use the sleep.

    If I set sleep to 0 milli and do a test loop 20 times
    St time. 00.00
    end time 00.00

    If I set sleep to 5milli and do a test loop 20 times
    St time. 00.00
    end time 00.3125

    If I set sleep to 10milli and do a test loop 20 times
    St time. 00.00
    end time 00.3125

    Any thoughts on improving this

    Sub SleepVBA()
    Dim startTime, finishTime, totalTime
    startTime = timer
    
     i = 0
     Do Until i = 20
        i = i + 1
          
           Sleep 0 '
     Loop
    
    finishTime = timer
    totalTime = finishTime - startTime '
    Debug.Print totalTime
    End Sub
    Last edited by Slyone2; 08-05-2010 at 12:20 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1