Link to home
Start Free TrialLog in
Avatar of khacharn
khacharn

asked on

How to Create a Delay of 5 mins in an executing prorgam..

hi all..
i want to know how to create a delay of 5 mins in a program..that i am executing..
I checked for related Functions in VB help.. but found none..
Please
help
Code would be useful..
Regards
Nitin
Avatar of mcrider
mcrider

The following code will wait in the do loop for 5 minutes...

Dim x As Long
x = Timer + 300
Do While x > Timer
    DoEvents
Loop


Hope this helps!


Cheers!
I would recommend to use the Sleep API inside that loop, using a small interval (55ms is the lowest) will release much more CPU time than using only DoEvents (do not remove Doevents just add Sleep(55) before Doevents).

The API declaration for Sleep is...

   Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)
Note: your program wont be able to do nothing in this 5 minutes not even with CTRL+BREAK!
do this:

- in a general module:

Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)

- in your form:
Dim i as integer
For i = 1 to 5
  Sleep(60000)
next i
HunterKiller: I think you need to start VB and try your code to see what it does, because using the Sleep API will interrupt the program, this is the reason you want to use a really short interval in a loop together with the DoEvents statement (The DoEvents statement will give the program CPU time for redrawing and user input).
could you read again the Q ? And could you read again my comment ? I told this already. And the guy says that it needs a pause. Sleep is the way.

[]'s
Hey Guys Don't Fight..man
Anways I will test both and the give points..OK
Could anyone tell me which Code will Relaease ny CPU time for other Programs to do their JOBS..
Regards
Nitin
This may work

Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)

Call Sleep(6000)

'This will pause your program for 1 min.
Avatar of khacharn

ASKER

HI ALL
i TRIED MCRIDER'S SOLUTION
bUT I AM OBSERVING THAT FOR THE NEXT 5 MINS MY CPU IS ENGAGED AND NOT FREED AS I WANT IT TO..
i WANT A SOLUTIN WHERE MY CPU TIME FOR MINUTES IS FREED FOR SOMEONE ELSE TO USE..
pLEASE HELP
asap
REGARDS
NITIN
So add the Sleep API call as Vbmaster suggested... It would look like this:

'In a module put this
Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)



Dim x As Long
x = Timer + 300
Do While x > Timer
    Sleep 60000
    DoEvents
Loop


By the way, your program will not be able to do anything else while the Sleep API is running...



Cheers!®©
Actually, the code I was recommending is something like this... (compare it to mcriders code and have a CPU-usage-checking program going and you'll see the big difference)

   Dim x As Long

   x = Timer + 300
   Do While (x > Timer)
      DoEvents
      Sleep(55)
   Loop
vbmaster, you're only sleeping for 55 milliseconds... ;-)
Ya I know, the reason I did not recomment Sleep(30000) is because that will freeze the program completely and prevent the window to repaint (which will make the program look... like a homeproject). Using a Do..DoEvents..Loop solution will make the program able to repaint BUT will take up a lot of CPU time. Using a short Sleep with the conjunction of a DoEvents statement has proved (to me at least) to be the most efficient solution.
ASKER CERTIFIED SOLUTION
Avatar of mcrider
mcrider

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Guys you people are so perfect and Intelligent..
Thanx for all the info..
I will try the code and transfer the points(which i m sure you guys are least interested in..!!)
Regards
Nitin
HI MCRIDER..
THANX FOR HELPING
BYE
Regards
Nitin
Thanks for the points... Glad I could help...


Cheers!®©