TimeSerial

From NSB App Studio
Revision as of 12:00, 6 November 2012 by Ghenne (talk | contribs) (Ghenne moved page Timeserial to TimeSerial)
Jump to navigation Jump to search

TimeSerial(hour, minute, second)

Description

TimeSerial returns a time constructed from the given hour, minute, and second. The required parameter, hour, is any numeric expression ranging from 0 to 23. The required parameters, minute and second, can be any numeric expression.

Example

Rem TimeSerial Example
'TimeSerial builds a time from its parts
Dim FiveThirty, Noon
FiveThirty = TimeSerial(11 - 6, 30, 0)
Noon = TimeSerial(12, 0, 0)
Print "Half past five:", FiveThirty
Print "Noon:", Noon

Output

Half past five:      05:30:00 AM
Noon:  12:00:00 PM
(sample time output is system dependant)

Related Items

DateSerial