12-20-2009, 05:48 AM
12-20-2009, 05:50 AM
Shouldn't be too hard.
What are you making and how much experience do you have?
I CBF to write them, i'll have a look around though.
Is this what you mean?
http://support.microsoft.com/kb/213481
What are you making and how much experience do you have?
I CBF to write them, i'll have a look around though.
Is this what you mean?
http://support.microsoft.com/kb/213481
12-20-2009, 03:17 PM
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.
12-21-2009, 09:50 AM
I'ts very easy, although I only found out about it a few days ago
Code:
dim a as new stopwatch()
a.start()
'do whatever you want
msgbox(a.elapsedmillisecons) 'milliseconds passed since start
a.stop()'to pause it any time
a=new stopwatch() 'to reset it