Wait
Wait TimeToWait
 
Parameters:

    TimeToWait = Time to wait in milliseconds
Returns: NONE
 

Wait halts the program execution for a specified time in milliseconds (1/1000 seconds).



FACTS:


* Wait Is limited to a max period of 1000 milliseconds (1 second)





Mini Tutorial:


  
; Display something on the screen:
  Print "We will wait for 1 seconds (= 1000 milliseconds)."
  Sync
  Wait 1000
  
  Print "The time is over."
  Sync
  WaitKey
  

 
Related Info: Timer | WaitKey :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com