LibreOfficeDev 25.8 Help
EFKxm‖Applies a date and/or time format to a date expression and returns the result as a string.
        FormatDateTime (Date As Date [, NamedFormat As Integer])
    String
APZJw‖Date: The date expression to be formatted.
WC3h8‖NamedFormat: An optional vbDateTimeFormat enumeration specifying the format that is to be applied to the date and time expression. If omitted, the value vbGeneralDate is used.
| THiYn‖Named Constant | AoBxM‖Value | TtduL‖Description | 
|---|---|---|
| vbGeneralDate | 0 | G67rA‖Displays a date and/or time as defined in your system's General Date setting. If a date only, no time is displayed; If a time only, no date is displayed. | 
| vbLongDate | 1 | DgHi6‖Display a date using the long date format specified in your computer's regional settings. | 
| vbShortDate | 2 | qEzCP‖Display a date using the short date format specified in your computer's regional settings. | 
| vbLongTime | 3 | PdzuG‖Displays a time as defined in your system's Long Time settings. | 
| vbShortTime | 4 | TJciz‖Display a time using the 24-hour format (hh:mm). | 
        REM  *****  BASIC  *****
        Option VBASupport 1
        Sub DateFormat
         Dim d as Date
         d = ("1958-01-29 00:25")
        GicVB‖ msgbox("General date format : " & FormatDateTime(d))
        sERMj‖ msgbox("Long date format : " & FormatDateTime(d,vbLongDate))
        aG8eg‖ msgbox("Short date format : " & FormatDateTime(d,vbShortDate))
        EpGjV‖ msgbox("Long time format : " & FormatDateTime(d,3))
        zt2KQ‖ msgbox("Short time format : " & FormatDateTime(d,vbShortTime))
        End Sub