Skip to content

joshglenen/Talking-Clock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Talking-Clock

C# application using OneClick Installer

Install (Windows only): download as zip, extract, run setup, delete zip and extracted folder

Uninstall: uninstall using control panel

To customize:

'Edit "Timer_Tick," remove default cases, and add a case for the time you want. Example below.

    private void myTimer_Tick(object sender, EventArgs e)
    {
        int preSpeech = DateTime.Now.Hour + 1;
        
        if (preSpeech == 0) 
        {
        myTray.ShowBalloonTip(10, "My Notification", "My message", ToolTipIcon.None);
        timer.Interval = 24*MilliSecondsLeftTilTheHour(); 
        return;
        }
        
        timer.Interval = MilliSecondsLeftTilTheHour(); 
        //Note, timer.interval should not normally exceed one day. Max is ~ 24 days.
    } 

About

Simple windows system tray application.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages