How do I write a Alert which will run at 00:00, 00:15, 00:30, and so on every day?
Can you give me an example code?
Thank you.
For example:
using System.Timers;
class Program
{
static void Main(string[] args)
{
Timer timer = new Timer();
timer.Interval = new TimeSpan(0, 15, 0).TotalMilliseconds;
timer.AutoReset = true;
timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);
timer.Enabled = true;
}
static void timer_Elapsed(object sender, ElapsedEventArgs e)
{
throw new NotImplementedException();
}
}
Here is a basic C# scheduler:
using System;
using System.Threading;
using System.Windows.Forms;
using System.IO;
public class TimerExample
{
public static void Main()
{
bool jobIsEnabledA = true;
bool jobIsEnabledB = true;
bool jobIsEnabledC = true;
Console.WriteLine("Starting at: {0}", DateTime.Now.ToString("h:mm:ss"));
try
{
using (StreamWriter writer = File.AppendText("C:\\scheduler_log.txt"))
{
while (true)
{
var currentTime = DateTime.Now.ToString("h:mm");
if (currentTime == "3:15" && jobIsEnabledA)
{
jobIsEnabledA = false;
ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time to brush your teeth! {0}", currentTime) ); });
}
if (currentTime == "3:20" && jobIsEnabledB)
{
jobIsEnabledB = false;
ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time to brush your teeth! {0}", currentTime)); });
}
if (currentTime == "3:30" && jobIsEnabledC)
{
jobIsEnabledC = false;
ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time for your favorite show! {0}", currentTime)); });
}
if (currentTime == "3:31")
{
jobIsEnabledA = true;
jobIsEnabledB = true;
jobIsEnabledC = true;
}
var logText = string.Format("{0} jobIsEnabledA: {1} jobIsEnabledB: {2} jobIsEnabledC: {3}", DateTime.Now.ToString("h:mm:ss"), jobIsEnabledA, jobIsEnabledB, jobIsEnabledC);
writer.WriteLine(logText);
Thread.Sleep(1000);
}
}
}
catch (Exception exception)
{
Console.WriteLine(exception);
}
}
}
You can use a timer that runs every minute that checks the current time. The check can look like:
private void OnTimerTick()
{
if(DateTime.Now.Minutes%15==0)
{
//Do something
}
}
But if you are looking for a program or service that has to be run every 15 minutes you can just write your application and have it started using a windows planned task.
You can write your program to execute certain task every time it is opened then you use Windows Scheduled Tasks to execute your program every day at certain times.
your program will be simpler and you will focus only on the logic you need to implement, the scheduling will be done by Windows for you, for free (assuming you already paid Windows :) ).
if you really want to implement the scheduling by yourself, there are frameworks and libraries like this one: Quartz.NET
If you want the windows service that executes some code with some time interwal, you need to create the service project (see here), and use in this service the Timer class (see here). If you want to run these task when your windows application is executes, use the Windows.Forms.Timer, as mentioned before.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With