Click here to Skip to main content
15,904,416 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to create reminder Program for windows App.
Posted

For Reminder program you have to create windows services
 
Share this answer
 
You may, for instance, programmatically add entries in the Windows Task Scheduler.
 
Share this answer
 
C#
 public MainWindow()
        {
timer1.Interval = 1000;
timer1.Enabled = true;
timer1.Tick += new System.EventHandler (OnTimerEvent);
        }


private void OnTimerEvent(object sender, EventArgs e)
{
    if(DateTime.Now==Remintingtime)
     {
    Playsound();
     }
}

private void Form1_Load(object sender, System.EventArgs e)
{
timer1.start();
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900