VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Pause/lock your application(for any length of time) at any moment with these few lines of code.

by John Barker (2 Submissions)
Category: Windows System Services
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 23rd September 1999
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Pause/lock your application(for any length of time) at any moment with these few lines of code.

API Declarations


Dim SECONDS_TO_WAIT As String

Rate Pause/lock your application(for any length of time) at any moment with these few lines of code.



SECONDS_TO_WAIT = "90"
ORIGINAL_TIME = DateTime.Time
    
Do Until DateDiff("s", ORIGINAL_TIME, DateTime.Time, 0, 0) > _
    Val(SECONDS_TO_WAIT)
Loop

Download this snippet    Add to My Saved Code

Pause/lock your application(for any length of time) at any moment with these few lines of code. Comments

No comments have been posted about Pause/lock your application(for any length of time) at any moment with these few lines of code.. Why not be the first to post a comment about Pause/lock your application(for any length of time) at any moment with these few lines of code..

Post your comment

Subject:
Message:
0/1000 characters