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)
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.
>