Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating a timer 1

Status
Not open for further replies.

Wilber007

Programmer
Aug 15, 2001
13
0
0
GB
Hi people,
Being a novice at this programming lark, i was hoping that somebody might be able to help me with a piece of code that is a time delay for a minute??
cheers
Will :)
 
add this API declaration to yor form...
Private Declare Sub Sleep Lib "kernel32" Alias "Sleep" (ByVal dwMilliseconds As Long)

and just call it :Sleep 60000
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top