VB6 Sleep Function-VBForums - VBForums - Visual Basic and VB .NET Discussions and More!
Option Explicit Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) ' Credits: (Milk (Sleep+Pause Sub)). (Wayne Spangler (Pause Sub)) Private Sub Pause(ByVal Delay As Single) Delay = Timer + Delay If Delay > 86400 Then 'more than ......