Skip to content

Instantly share code, notes, and snippets.

@adegard
Forked from kevinguyer/Sleep - Pause in VBS.vbs
Created February 16, 2020 16:43
Show Gist options
  • Save adegard/440c34c214bd82377352b8715ba0cd44 to your computer and use it in GitHub Desktop.
Save adegard/440c34c214bd82377352b8715ba0cd44 to your computer and use it in GitHub Desktop.
Sleep - Pause in VBS
' So simple, so elegant, so elusive. Behold its glory:
' ------------------------------------------------------------------
Sub wait_function(secs)
Dim enter_time, leave_time
enter_time = Timer
leave_time = Timer
While (enter_time + secs > leave_time)
leave_time = Timer
Wend
end sub
' ------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment