Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

How would i display the reload duration time in the UI

Hi,

I want to display the length of time my application takes to reload on my dashboard.

Can someone please help me ?

1 Solution

Accepted Solutions
hector
Specialist
Specialist

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

View solution in original post

3 Replies
Not applicable

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

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Thanks, but that just gives me the last reload time. I want to display how long the reload took.

hector
Specialist
Specialist

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