CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2001
    Location
    France
    Posts
    2

    Format date in long date

    In VBscript, i want to format date in long date like : 09/06/98 --> june 9, 1998


  2. #2
    Join Date
    May 1999
    Posts
    71

    Re: Format date in long date

    Try this
    dim sDate as String
    sDate=text1.text
    sDate=Format(sDate,"mmm dd,yyyy")


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

Featured