Quote Originally Posted by koolsid View Post
Use a timer or use doevents?
I'm using the Timer function with DoEvents:
Code:
Private Sub Wait(sec As Single)
    'Pause sec seconds
    Dim tim As Single

    tim = Timer
    While Timer < tim + sec
        DoEvents
    Wend
End Sub