Hello.

I'm creating a windows service and would like to add a tray icon for it.

Can this be done from a windows service app, or do I need to create a
controller app?

Thanks in advance,

Mike

Re: Icon in the tray for a service app by Mattias

Mattias
Fri Aug 12 07:51:42 CDT 2005

>Can this be done from a windows service app, or do I need to create a
>controller app?

There are good reasons for putting it in a separate application.
Services should generally not interact with the user desktop.



Mattias

--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Re: Icon in the tray for a service app by mike

mike
Fri Aug 12 08:01:19 CDT 2005

Pretty much what I thought.

Thanks Mattias.

"Mattias Sjögren" <mattias.dont.want.spam@mvps.org> wrote in message
news:OtBYNyznFHA.3256@TK2MSFTNGP12.phx.gbl...
> >Can this be done from a windows service app, or do I need to create a
>>controller app?
>
> There are good reasons for putting it in a separate application.
> Services should generally not interact with the user desktop.
>
>
>
> Mattias
>
> --
> Mattias Sjögren [MVP] mattias @ mvps.org
> http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
> Please reply only to the newsgroup.



Re: Icon in the tray for a service app by hB

hB
Sat Aug 13 08:04:46 CDT 2005

its better in a separate application.
Let this application and service communicate.
(for example: once we used sockets to communicate-show status-control
after authentication)

---
hB