This function returns the minute portion of the current time.
Return value
The return value is an Integer.
Example
If the current time is 12:41:27, the return value of the following statement is 41.
Minute()
This function returns the minute portion of a specified time.
Parameter
a - A Time value.
Return value
The return value is an Integer.
Example
Suppose the time is 8:30:27. The return value of the following statement is 30.
Minute(ToTime(8,30,27))
This function returns the minute portion of a specified DateTime.
Parameter
a - A DateTime value.
Return value
The return value is an Integer.
Example
Suppose the datetime is Sep. 21,1997 12:20:25. The return value of the following statement is 20.
Minute(ToDateTime(1997, 9, 21, 12, 20, 25))