Results 1 to 4 of 4

Thread: Getting today's date

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jul 2000
    Location
    Ca
    Posts
    106

    Question

    how do you get today's date, and what day today is. I'm pretty sure there's a simple way to find this out. The information I need is the month, date, year and the day of the week, like sunday or monday... help needed asap

  2. #2
    Guest
    Try:
    Code:
    Retval = Format(Date, "dddd dd/mm/yyyy")
    MsgBox (Retval)

  3. #3
    Guest
    Use the Format function to do it.

    Code:
    MsgBox "Today is: " & Format$(Date, "Long Date")

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Jul 2000
    Location
    Ca
    Posts
    106
    hey thanks for replying... i found out how to get the dates... i can just use month(date), year(date) and day(date)

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