Syntax
Public Function UnixTime(time As Date)As String
Description
This function is used to track time as a running total of seconds elapsed from 00:00 January 1, 1970.
Parameters
Key | Description |
Time | Time to get the total seconds for it, value of type Date. |
Return value
Returns the unix time as a string value.
Sample
Public Sub main()AlertMessage UnixTime(CurTime()) ' to get the unix time End Sub
See Also