Hi Frank,
as help file says, Format$ serves only for numeric expressions.
Time$ and Date$ return strings.
But good news - DateTime module allows what you need:
[code=thinbasic]
uses "Console", "DT"
printl DT_DateFormat(date$, "dd.MM.yyyy")
printl DT_TimeFormat(time$, "hh:mm:ss")
waitkey
[/code]
Petr
Bookmarks