Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to display the length of time my application takes to reload on my dashboard.
Can someone please help me ?
Hi
create a variable at the start of the script
Let vStart = now();
Then in a text object use interval(ReloadTime() - vStart,'hh:mm:ss')
then you will have the time since the script started to the finish
Rgds
Use This
Take one text box on your interface and write following line
='Last Reload Date/Time : ' & date(ReloadTime(),'DD-MM-YYYY HH:mm:SS')
OR
=ReloadTime()
Thanks, but that just gives me the last reload time. I want to display how long the reload took.
Hi
create a variable at the start of the script
Let vStart = now();
Then in a text object use interval(ReloadTime() - vStart,'hh:mm:ss')
then you will have the time since the script started to the finish
Rgds