Hello anyone who landed on this forum thread:
Unix Time Stamp records seconds since '1970-01-01 00:00:00'
Microsoft store a number representing the number of complete days since '1970-01-00 00:00:00' i.e. 1 = '1970-01-01 00:00:00'
So, Microsoft's date value for the beginning of the unix era '1970-01-01 00:00:00' is 25569
The number of seconds in 25569 days is:
25569*24*60*60
= 2209161600
The number of seconds in 1 day is:
24*60*60
= 86400
So in Access:
Code:HumanDate: Format(([unixdate]+2209161600)/86400,"dd/mm/yy hh:nn:ss")
Hope the readers of this thread find this post helpful.
I think of got this straight but obviously use at your own risk :-)
Tim Woolfson
EDIT: MODERATOR: DO NOT POST YOUR LINKS HERE