Greetings,

I've been able to place an icon in the System Tray with my Windows Form but am unable to use the same code in my Windows Service, any thoughts?

Thanks,

--Mike

notifyIcon = new NotifyIcon();
notifyIcon.Text = "CodeOne SS";
notifyIcon.Icon = new Icon("c:\\WINDOWS\\HRB.ico");
notifyIcon.Visible = true;