RosettaCodeData/Task/Sleep/VBA/sleep.vba
2014-01-17 05:34:36 +00:00

5 lines
196 B
Text

Function Sleep(iSecsWait As Integer)
Debug.Print Now(), "Sleeping..."
Application.Wait Now + iSecsWait / 86400 'Time is stored as fractions of 24 hour day
Debug.Print Now(), "Awake!"
End Function