Results 1 to 4 of 4

Thread: Date format (Resolved)

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 2004
    Location
    Texas
    Posts
    144

    Date format (Resolved)

    Hi,
    With this line of code

    Text2.Text = Format(Now, "yyyy mm dd hh:mm:ss")

    The output looks like this but...

    2004 03 11 19:07:58

    I want to get the output to display "03" as "Mar" like the one below

    2004 Mar 11 19:07:58

    Can it be done?

    Thanks,
    Last edited by Iat; Mar 11th, 2004 at 08:25 PM.

  2. #2
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429
    With an extra "m" like:
    VB Code:
    1. Format(Now, "yyyy mmm dd hh:mm:ss")




    Bruce.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Feb 2004
    Location
    Texas
    Posts
    144
    Thanks, that's exactly what I needed.

  4. #4
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429
    No problem

    This function may also come in handy one day:

    FormatdateTime()

    It has the following syntax:
    Returns an expression formatted as a date or time.

    Syntax

    FormatDateTime(Date[,NamedFormat])

    The FormatDateTime function syntax has these parts:

    Part Description
    Date Required. Date expression to be formatted.
    NamedFormat Optional. Numeric value that indicates the date/time format used. If omitted, vbGeneralDate is used.


    Settings

    The NamedFormat argument has the following settings:

    Constant Value Description
    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).





    Bruce.

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