I'm working with an alarm
app using C#
.
Firstly, I have a Form named AddReminder.cs
which take Year, Month, Day, Hour, Min and some description about what to do in that time. If I click a button named Add Reminder
then it all information will save in database/pc. It will be able to add many reminder as I want.
Then I have another form named MyReminder.cs
which will match the times from database/pc and give me message and a alarm. I want to say, while the pc time will be exactly the saved or reminder time then this form will be executed.
Now My questions are:
- How can I save multiple reminder in database or pc?
- How
MyReminder.cs
will compare with those datas and execute with alarm?
I'm working in Windows and using VS2012. And over sure it's not the duplicate of this.