data type - timestamp

B

BCat

Hi all,

If there is not timestamp datatype in Access, what should I use to rplace
it?

BTW, how to get milisecond in Access?

Thanks
 
R

Rick Brandt

BCat said:
Hi all,

If there is not timestamp datatype in Access, what should I use to rplace
it?
DateTime

BTW, how to get milisecond in Access?

You can't.
 
A

Andi Mayer

with api

declare function timeGetTime Lib "winmm.dll" alias "timeGetTime " ()
as Long

If you expect an answer to a personal mail, add the word "manfred" to the first 10 lines in the message
MW
 
D

Douglas J. Steele

Andi Mayer said:
with api

declare function timeGetTime Lib "winmm.dll" alias "timeGetTime " ()
as Long

Just be aware that you can't store it in a Date datatype.
 
Top