Domino Code Fragment

Code Name*
Sleep or Wait code
Date*
06/28/2025
Source (or email address if you prefer)*
[email protected]
IP address:.172.69.59.212
Description*
'Puts the app to sleep for the given number of milliseconds
Type*
LotusScript
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:

'Puts the app to sleep for the given number of milliseconds

Declare Sub Sleep Lib "kernel32" (Byval dwMilliseconds As Long)


Sub Wait(Byval seconds As Single)
Call Sleep(Int(seconds * 1000#))
End Sub