"\#mm\/dd\/yyyy\#"

a.phillips

Registered User.
Local time
Today, 11:37
Joined
Jul 19, 2011
Messages
37
Hi i was just woundering if anyone has seen this before, and if so could you explain what it does.

Thanks

Const strcJetDate = "\#mm\/dd\/yyyy\#"
 
Do you know what this does "mm/dd/yyyy" is? If you do it will be easier to explain.

Also, it's explaining what it is for (not what it does) would depend on the context it's being used.
 
so you will be using this to format your dates, to avoid date ambgiuity in locales that do not use mm/dd/yy (standard US microsoft method)

format(somedate,strcJetDate)

but out of interest, depending on your locale, you can probably get the same reliability with this, which is easier to remember!

format(somedate, "long date")
 
Thanks for all the replies. This was used in code to try and get the date format correct, but didn't seem to be working fully! I'll have a good read through that webpage.

Thanks for everyones help
 

Users who are viewing this thread

Back
Top Bottom