Is there a way to enter a pause state between commands running?
Zermoth 0 Newbie Poster
Recommended Answers
Jump to PostHi,
use SLEEP API
Declare this at the top of the Form's Code window (After Option Explicit)
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) 'To Pause/Sleep for 10 seconds, write this code: Sleep(10000)
Regards
Veena
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.