Custom VB.Net Code to convert system time value to an an actual

You'd need something like (not tested):

hours = int(systime/3600) 'You want to truncate, not round
minutes = int((systime-(hours*3600))/60)
seconds = systime-(hours*3600)-(minutes*60)

displaytime = cstr(hours)+":"+cstr(minutes)+":"+cstr(seconds)

--- In vantage@yahoogroups.com, "vacortes21" <vcortes@...> wrote:
>
> Hi, I need help creating a Custom VB.Net Code in the Script Editor to convert a system time value to an an actual time value?
>
> any tips and advice are appreciated.
>
> have a great day.
>
Hi, I need help creating a Custom VB.Net Code in the Script Editor to convert a system time value to an an actual time value?

any tips and advice are appreciated.

have a great day.
Its seconds since midnight
On Feb 17, 2012 12:29 PM, "vacortes21" <vcortes@...> wrote:

> **
>
>
> Hi, I need help creating a Custom VB.Net Code in the Script Editor to
> convert a system time value to an an actual time value?
>
> any tips and advice are appreciated.
>
> have a great day.
>
>
>


[Non-text portions of this message have been removed]