|
-
Dec 12th, 1999, 12:22 PM
#1
Thread Starter
Lively Member
Hello,
How can I format a date ? the result must be
"dd/mm/yy"
for example:
Dim MyDate as Date
MyDate = Now()
The result is always "dd/mm/yy hh:mm:ss"
How can dump the "hh:mm:ss" ?
R@emdonck
-
Dec 12th, 1999, 12:42 PM
#2
Look up the Format function in Help. One of the "named" (built-in) formats for dates is Short Date and it's used like thisMsgBox Format(Now(), "Short Date")
------------------
Marty
-
Dec 12th, 1999, 12:42 PM
#3
Fanatic Member
This seems to work:
Code:
Dim MyDate As Date
MyDate = Format(Now, "hh:mm:ss")
------------------
Visual Basic Programmer
------------------
PolComSoft
You will hear a lot about it.
-
Dec 12th, 1999, 01:34 PM
#4
Member
This uses the format string "m/d/yy", which displays the month, day, and a two-digit year.
Code:
Dim MyDate As Date
MyDate = Now()
Text1.Text = Format(MyDate, "m/d/yy")
[This message has been edited by Ruchi (edited 12-13-1999).]
-
Dec 12th, 1999, 03:40 PM
#5
Lively Member
here are many formats you can use:
d = one digit date
dd = two digit date
ddd = abbreviated day name
dddd = full day name
m - one digit month
mm = two digit month
mmm = abbreviated month name
mmmm = full month name
yy = two digit year
yyyy = four digit year
use any of those formats with wach other in this code:
Text1.Text = Format(MyDate, see above formats)
for instance...
Text1.Text = Format(MyDate, dd/mm/yy)
will return 27/01/99
or
Text1.Text = Format(MyDate, dddd mmm dd, yyyy)
will return Wednesday Jan 27, 1999
hope this all helps. happy programming!!
--michael
-
Nov 22nd, 2017, 07:35 PM
#6
Re: Password Hashing and Salt
Please delete, replied to wrong thread
Last edited by PlausiblyDamp; Nov 22nd, 2017 at 08:41 PM.
-
Nov 22nd, 2017, 08:33 PM
#7
Re: Format a date
What year is it in Newport, UK?
-
Nov 23rd, 2017, 06:24 AM
#8
Re: Format a date
Maybe 19 days after the OP and just before you know what
-
Nov 23rd, 2017, 06:29 AM
#9
Re: Format a date
oops, didn't see the replies - I have no idea what happened as I replied to a different thread and somehow my response appeared there and on this one
-
Nov 23rd, 2017, 07:08 AM
#10
Re: Format a date
 Originally Posted by Spooman
Maybe 19 days after the OP and just before you know what
Morning spoo...my point was this thread is 18 YEARS old (started and ended in 1999---a great album by Prince (or whatever name he now goes by), btw). But now I see our English friend PD's post was a mistake.
-
Nov 23rd, 2017, 07:30 AM
#11
Re: Format a date
Back at ya, Sammi. I was making a loose reference to the Y2K issue .. read as time-warp.
-
Nov 23rd, 2017, 09:55 AM
#12
Re: Format a date
Prince died last year. Are we still doing the Time Warp in this thread or what?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|