PDA

Click to See Complete Forum and Search --> : Format Time??


Smirre
Feb 5th, 2001, 07:05 AM
Anyone know how to format time from
us to european in vbscript??

ex.
01:01:01 PM --> 13:01:01

sebs
Feb 5th, 2001, 08:03 AM
you can try one of those two:

formatDateTime(yourTime,vbShortTime)
or
formatDateTime(yourTime,vbLongTime)

ramdasv
Feb 5th, 2001, 08:08 AM
Try using

FormatDateTime(Date[, NamedFormat])

The NamedFormat argument has the following settings:

vbGeneralDate 0 Display a date and/or time. If there is a date part, display it as a short date. If there is a time part, display it as a long time. If present, both parts are displayed.

vbLongDate 1 Display a date using the long date format specified in your computer's regional settings.

vbShortDate 2 Display a date using the short date format specified in your computer's regional settings.

vbLongTime 3 Display a time using the time format specified in your computer's regional settings.

vbShortTime 4 Display a time using the 24-hour format (hh:mm).