Reference Manual - Table of Contents Date and Time
Command Summary:
Delay ticksFunction Summary:
var$ = Date ( )
var$ = Time ( )
var = Timer ( )
var$ = Day ( date$ )
Delay ticks
This command delays execution for a designated amount of time.
ticks - This represents how much time to delay in ticks.. A tick equals 1/60th of a second. There are 3600 ticks in a minute and 216,000 ticks in an hour.
var$ = Date()
This function returns a string representing the current date. The Date function returns a date in MM/DD/YYYY format that represents the current date. (M = Month, D = Day, Y = Year).
For example the fourth of July in 1997 would be returned as 07/04/1997.
var$ = Time()
This function returns a string representing the current time. The Date function returns a date in HH:MM:SS format that represents the current date. (H = Hours, M = Minutes, S = Seconds).
var = Timer()
This function returns a value representing how much time since midnight. This function returns a numeric value representing the number of ticks since midnight. A tick equals 1/60th of a second. There are 3600 ticks in a minute and 216,000 ticks in an hour.
var$= Day( date$ )
This function returns a string value representing the day of the week. This function returns a string representing the day of the week with the first letter capitalized. The resulting string will be equal to one of the following: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, or Saturday,
date$ - This argument can be any valid date in the MM/DD/YYYY format.