DT_GetTimeSeparator
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Obsolete > DT (Date Handling) > DT_GetTimeSeparator |
This functionality has been made obsolete by newer, better solved CDateTime available directly in core instead.
Description
The DT_GetTimeSeparator() function returns the time separator character.
Syntax
DT_GetTimeSeparator() AS STRING
Returns
Returns AS STRING
The active time separator.
Parameters
Remarks
Restrictions
See also
DT_SetTimeSeparator
Examples
IF DT_GetTimeSeparator() <> "." THEN
MSGBOX 0, "Set the time separator to: " & DT_SetTimeSeparator(".")
' results: "Set the time separator to: ."
END IF