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.
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.