Does anyone know the api definition to call Wait 5000 so that it will just sit there for 5 sec? thanks
I think you are looking for the Sleep API function. Code: Private Declare Sub Sleep Lib "kernel32" _ (ByVal dwMilliseconds As Long)
Private Declare Sub Sleep Lib "kernel32" _ (ByVal dwMilliseconds As Long)
Right the sleep Thanks alot!!
Forum Rules