![]() |
Languages »
C# »
Applications
Intermediate
License: The Code Project Open License (CPOL)
TrayCalendar.NETBy MJDamronA simple application that places a date in the system tray |
C#, Windows, .NET, Visual Studio, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
Years ago when Chris Maunder published his MFC TrayCalendar app, I added a few features that I wanted such as being able to copy the current date to the clipboard, and a dialog to show the calendar so I copy date ranges and look at what date of the week my niece's birthday was on or what not.
I recently hacked up a .NET version of the app. The difference is that the system tray icons are created dynamically.
The code to convert an Image to an Icon actually came from the Web:
// Convert an image to an Icon
System.Drawing.Icon ImageToIcon(System.Drawing.Image image)
{
return System.Drawing.Icon.FromHandle(((Bitmap) image).GetHicon());
}
I'd like to add other features like integrating with Outlook.
I removed the timer control and used the Win32 SetTimer. I think there is an issue with the font too.
| You must Sign In to use this message board. | ||||||||
|
||||||||
|
||||||||
|
||||||||
|
||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 22 Jun 2006 Editor: Deeksha Shenoy |
Copyright 2006 by MJDamron Everything else Copyright © CodeProject, 1999-2009 Web15 | Advertise on the Code Project |