Results 1 to 3 of 3

Thread: Format Time??

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 2000
    Location
    Kalix, Norrbotten, SWEDEN
    Posts
    343
    Anyone know how to format time from
    us to european in vbscript??

    ex.
    01:01:01 PM --> 13:01:01
    Visual Basic
    C, C++
    Java
    Access
    SQL Server

    MCP, MCSD

  2. #2
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    you can try one of those two:

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

  3. #3
    Lively Member
    Join Date
    Jan 1999
    Location
    India
    Posts
    85

    format date

    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).
    Thanks
    Ramdas

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width