Thread: Stopwatch query
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_7_] Bob Phillips[_7_] is offline
external usenet poster
 
Posts: 1,120
Default Stopwatch query

Here is a previous post of mine. It is 1 sec precision, but can be adjusted
http://tinyurl.com/8fcc5

It does have a restart option, but it would be a sim-ple proce

Sub RestartClock()
fncWindowsTimer 1000, WindowsTimer '1 sec
End Sub

--
HTH

Bob Phillips

"atlashill" wrote in message
oups.com...
Thought I'd update this:

I have the basics down (Starting and Stopping) and can now
pause/unpause without resetting. However, I'm still unsure as to how
to get my clock to tick down by tenths and jiffies (100ths).

atlashill wrote:
I'm trying to program a macro stopwatch for purpose of displaying it on
a TV scoreboard/"FoxBox", yet the information I've found online hasn't
proven precise. I'd like for this stopwatch to count down by tenths of
a second, in addition to count up as much as 100ths of a second (for
track races). Also, it needs to be able to restart where it left off
instead of reseting or continuing as though I hadn't stopped it.

I'm probably asking for too much, but every little bit helps.