You mean from when you started the application to when you finished it?
If that's what you're talking about, then just make a new timer with an interval of 1000, and enable it.
Create a new module and add:
Double click on the timer and add this:
Every second, lapsedTime will get added by 1 from the time the application was ran. You can format that however you like.
If that's what you're talking about, then just make a new timer with an interval of 1000, and enable it.
Create a new module and add:
Code:
Public lapsedTime As Int = 0
Double click on the timer and add this:
Code:
lapsedTime = lapsedTime + 1
Every second, lapsedTime will get added by 1 from the time the application was ran. You can format that however you like.