Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
I would like to display a "last load took mm:ss" in one of my apps but can't find a function for it. I know I can use RELOADTIME to get the time the last load finished but is there a way to get the start time of the last load?
Many thanks for any suggestions.
APS
Start the script with
let starttime =now() ;
end the script with
let endtime =now() ;
create a textbox:
=time(endtime-starttime)
/D
Start the script with
let starttime =now() ;
end the script with
let endtime =now() ;
create a textbox:
=time(endtime-starttime)
/D
Just set a variable at the beginning of your script to NOW()