Xojo Plugin
Xojo Plugin
Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)
Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim dt As New Chilkat.CkDateTime
success = dt.SetFromCurrentSystemTime()
// Get a UTC time.
Dim bLocal As Boolean
bLocal = False
Dim timestamp As String
timestamp = dt.GetAsTimestamp(bLocal)
System.DebugLog("Current UTC Time: " + timestamp)
// Get a local time.
bLocal = True
timestamp = dt.GetAsTimestamp(bLocal)
System.DebugLog("Current Local Time: " + timestamp)
// Sample output:
//
// Current UTC Time: 2022-03-01T00:48:58Z
// Current Local Time: 2022-02-28T18:48:58-06:00