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
>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

Signature
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
mike - 12 Aug 2005 14:01 GMT
Pretty much what I thought.
Thanks Mattias.
> >Can this be done from a windows service app, or do I need to create a
>>controller app?
[quoted text clipped - 3 lines]
>
> Mattias
hB - 13 Aug 2005 14:04 GMT
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