View Single Post
10/11/14, 03:37 PM   #5
dopiate
AddOn Author - Click to view addons
Join Date: Jun 2014
Posts: 142
Originally Posted by Garkin View Post
You can try conversion from timetamp here:
http://www.epochconverter.com/

1410642972 = 09/13/2014 @ 21:16:12 UTC
1410643006 = 09/13/2014 @ 21:16:46 UTC
1410643071 = 09/13/2014 @ 21:17:51 UTC

On the same page is also explained how to get timestamp and how to convert it to human readable form.
Wow that's a nice resource - ty for the link!

I can probably just use the vbscript command the show in VB.Net.

it seems simple in hindsight - but I just didn't recognize it as Unix.

Thanks again!

edit: just tested the function that page links and it works perfect!

Function epoch2date(ByVal myEpoch)
epoch2date = DateAdd("s", myEpoch, "01/01/1970 00:00:00")
End Function

Last edited by dopiate : 10/11/14 at 03:55 PM. Reason: it worked great
  Reply With Quote