Home All Groups Group Topic Archive Search About

Retrieve date from database

Author
4 Aug 2006 8:56 AM
michele
Hi, I want to load a listbox with the date that are stored in a database
(mdb), the problem is when I retrieve the date it has a format like
"01/01/2006 0.00.00". In Access the date is stored as short date.
Thanks in advice

Author
4 Aug 2006 12:46 PM
Jerry H.
Try this:

dim dtDate as date
dtDate = format(Cdate([AccessDateField]), "MM/dd/yyyy hh.mm.ss")

I'm not 100% sure about this, but even though Access date fields
display as shortdate, I believe the stored value also contains the
Time, and if that is the case, the above code will display what you
need.  But if only the Date is stored then the Time stamp portion will
likely return only "12.00.00"

Good luck!


michele wrote:
Show quoteHide quote
> Hi, I want to load a listbox with the date that are stored in a database
> (mdb), the problem is when I retrieve the date it has a format like
> "01/01/2006 0.00.00". In Access the date is stored as short date.
> Thanks in advice
Author
7 Aug 2006 8:26 AM
michele
I try it and it works fine, thanks


Show quoteHide quote
"Jerry H." <boilersr***@gmail.com> ha scritto nel messaggio
news:1154695566.003554.85760@m73g2000cwd.googlegroups.com...
> Try this:
>
> dim dtDate as date
> dtDate = format(Cdate([AccessDateField]), "MM/dd/yyyy hh.mm.ss")
>
> I'm not 100% sure about this, but even though Access date fields
> display as shortdate, I believe the stored value also contains the
> Time, and if that is the case, the above code will display what you
> need.  But if only the Date is stored then the Time stamp portion will
> likely return only "12.00.00"
>
> Good luck!
>
>
> michele wrote:
>> Hi, I want to load a listbox with the date that are stored in a database
>> (mdb), the problem is when I retrieve the date it has a format like
>> "01/01/2006 0.00.00". In Access the date is stored as short date.
>> Thanks in advice
>