Hi i want to build functionality of reminder,but have no clue how to implement it.

Say i have textbox that has some description of task and date time control for selecting date at what i have to do that task.Now how can i implement such thing that once task has been scheduled (December 2012) when date is near a messagebox shoes and i am informed that i scheduled some task some days ago

may be my description is unclear but i need something Reminder that displays the scheduled task some time earlier.

oh yes all the data is stored in SQLLite database

or how can we check if what is the nearest date in database as compared to now?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can use Quartz.Net for scheduling. It might be an overkill for what you want but it provides you with a lot of power.

http://quartznet.sourceforge.net/

link|improve this answer
feedback

Check out this Timer Tutorial in C#, its perfect for you: http://www.c-sharpcorner.com/UploadFile/mahesh/WorkingwithTimerControlinCSharp11302005054911AM/WorkingwithTimerControlinCSharp.aspx

link|improve this answer
how would you check if application schedules a task for december 2012? i simply cannot keep my timer until then running – Afnan Bashir Jun 7 '11 at 19:22
Ah! So thats your problem. Do that in two parts: part #1 - write your time-checking code, something like: ` if(DateTime.Now == RemindTime) print("Reminder!!!"); ` ; part #2: use Windows Scheduler to run that program once a day, or whenever you want :) – nosuchnick Jun 7 '11 at 19:24
dude your last comment was incomplete – Afnan Bashir Jun 7 '11 at 19:25
i know, i keep hitting enter... – nosuchnick Jun 7 '11 at 19:26
feedback

create a windows service and put a timer on this service to check scheduled job ,also you can schedule your app by windows job scheduler to run in a priod and check something

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.