I am working on a first time C# project in Visual Studio 2005 and I am wondering if there is anything special that needs doing to change the application icon apart from chan
Additional tray icon from resources. Put an appropriate image into the resources and name it icon.
NotifyIcon tray = new NotifyIcon(); tray.Icon = Icon.FromHandle(WindowsApplication1.Properties.Resources.icon.GetHicon()); tray.Visible = true;