VB.NET Timer question - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:23:43Z http://stackoverflow.com/feeds/question/830567 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/830567/vb-net-timer-question 1 VB.NET Timer question icemanind 2009-05-06T16:45:47Z 2009-05-06T17:03:45Z <p>Guys,</p> <p>I wrote a VB.NET Windows Service, which works fine. I have only one issue with it. I want the service to execute on the half hour and top of the hour marks (e.g. 9:00, 9:30, 10:00, 10:30, 11:00, etc etc etc). I am using the following code:</p> <pre><code>Protected Overrides Sub OnStart(ByVal args() As String) ' Add code here to start your service. This method should set things ' in motion so your service can do its work. Dim oCallBack As New TimerCallback(AddressOf TimedEvent) oTimer = New System.Threading.Timer(oCallBack, Nothing, 300000, 300000) EventLog.WriteEntry("CCFinalizeService has begun successfully." , _ System.Diagnostics.EventLogEntryType.Information) End Sub </code></pre> <p>This code works, however, if the service starts at, say, 10:15, then it executes at 10:15, 10:45, 11:15, 11:45. How do I make it so it always executes on the 30 minute and top of the hour marks?</p> http://stackoverflow.com/questions/830567/vb-net-timer-question/830587#830587 2 Answer by Reed Copsey for VB.NET Timer question Reed Copsey 2009-05-06T16:49:31Z 2009-05-06T16:49:31Z <p>You could change it so that, at startup, it figures out the time required to go to a half hour increment based off the current time. Basically, your first timer would be &lt;300000, then switch to every 300000.</p> <p>Alternatively, you might want to consider using the <a href="http://support.microsoft.com/kb/308569" rel="nofollow">Windows Task Scheduler</a> instead of doing this as a service. The task scheduler lets you specify specific times to run an application.</p> http://stackoverflow.com/questions/830567/vb-net-timer-question/830590#830590 0 Answer by Mike for VB.NET Timer question Mike 2009-05-06T16:50:30Z 2009-05-06T16:50:30Z <p>Probably the easiest solution would be to test, at service startup, the current time, via the Date.Now property. You can then use a second timer to start the first timer, but set the Interval on the second timer to fire only at the next 1/2 hr or full hour mark.</p> <p>Alternately, in your startup routine, have an infinite while loop that tests to see if the current time is on your mark. If not, System.Threading.Thread.Sleep(1000) and test again.</p> <p>Good luck!</p> http://stackoverflow.com/questions/830567/vb-net-timer-question/830595#830595 0 Answer by Jon for VB.NET Timer question Jon 2009-05-06T16:51:33Z 2009-05-06T16:51:33Z <p>Maybe something like this??</p> <pre><code> If Now.Minute &lt;&gt; 0 Or Now.Minute &lt;&gt; 30 Then Thread.Sleep((30 - Now.Minute) * 60 * 1000) End If </code></pre> http://stackoverflow.com/questions/830567/vb-net-timer-question/830671#830671 0 Answer by Patrick McDonald for VB.NET Timer question Patrick McDonald 2009-05-06T17:03:45Z 2009-05-06T17:03:45Z <p>You just need to modify the dueTime parameter in the Timer creation method</p> <pre><code>Dim now As Date = DateTime.Now Dim dueTime As Integer ' milliseconds to the next half-hour dueTime = 1800000 - (now.Minute Mod 30) * 60000 - now.Second * 1000 - now.Millisecond oTimer = New System.Threading.Timer(oCallBack, Nothing, dueTime, 1800000) </code></pre>