C # Reminder Calendar

I want to create reminder functionality, but I don’t know how to implement it.

Let's say I have a text box that has some description of controlling the time and date for selecting the date when I should complete this task. Now, how can I implement such a thing as soon as the task is scheduled (December 2012), when the date is next to the message box, and they tell me that I planned some task a few days ago.

All data is stored in the SQLLite database.

Or how can we check if the nearest date in the database is compared to the current?

+4
source share
3 answers

You can use Quartz.Net for planning. It may be redundant for what you want, but it provides you more power.

http://quartznet.sourceforge.net/

+4
source

create a Windows service and put a timer in this service to check the scheduled task, you can also schedule your application with the Windows task scheduler to run in the sentence and check something

+1
source

All Articles