Page 1 of 1

Start when open

Unread postPosted: Sun Nov 15, 2009 4:45 pm
by bluefeather8989
[color=#0040FF]can u make an option that will start count down when stopwatch program is open :?: BTW i love this program and would buy it if u could add this feature.

Re: Start when open

Unread postPosted: Sun Nov 15, 2009 8:10 pm
by Stopwatch

Re: Start when open

Unread postPosted: Sun Nov 22, 2009 5:45 pm
by bluefeather8989
Thank you for your help. can you help me on making an macro fro excell that will open the stopwatch count down and make it start automatic ?? this is what i really need it to do

Re: Start when open

Unread postPosted: Sun Nov 22, 2009 7:03 pm
by Stopwatch
I'm not familiar with Excel macros. Let's try anyway.

Re: Start when open

Unread postPosted: Wed Jan 06, 2010 3:39 pm
by cwmst7
Try this:

Sub Stopwatch()
'
' Stopwatch Macro
'
Shell "C:\Program Files\XNote Stopwatch\xnsw.exe start", vbNormalFocus
End Sub



Shell starts and external program and runs it, not waiting to see it's results or anything. vbNormalFocus just says to set focus to the stopwatc. There are several other focus constants you can use (Maximize, Miniminze, ...)