Re: How do I manually create an icon in the system tray?
- From: "Joseph Geretz" <jgeretz@xxxxxxxxxx>
- Date: Thu, 5 Jul 2007 16:00:46 -0400
Hi Peter,
Hmmm...I thought that services by definition were not allowed to have UI.
That would preclude the service itself from using the system tray for a
notify icon.
Is this really true? I have about a dozen icons in my Tray, about half of
them represent running services (e.g. PCAnywhere, SQL Server, Bluetooth,
etc.).
Writing a service is a bit of a black art from what I can see; Since a
service won't run in the IDE it's difficult to step through the code during
the development in order to test it. What I've done is implemented an #if
DEBUG conditional compiler statement in the Program module to define two
separate Main methods. If running in Debug, the program installs an icon in
the System Tray which allows the developer to test Start / Stop, etc. In
short, all of the conditions which would be encountered when running as a
legitimate Service at production runtime. Having done this, it would be nice
if I could leverage this interactive control infrastructure for runtime, but
if not, not.
Are there any whitepapers which describe logistics and best-practices for
service development using Visual Studio 2005? I am managing, but if there
are specific recommendations and approaches which work better than others,
I'd like to read up on them.
Thanks for your advice.
- Joseph Geretz -
"Peter Duniho" <NpOeStPeAdM@xxxxxxxxxxxxxxxx> wrote in message
news:op.tuzbdcib8jd0ej@xxxxxxxxxxxxxxxxxxxxxxx
On Wed, 04 Jul 2007 22:51:01 -0700, Joseph Geretz <jgeretz@xxxxxxxxxx>
wrote:
The conventional approach is easy enough; drop a NotifyIcon onto a Form.
When the form is loaded - bingo - the icon appears in the System Tray.
I can't use this approach though. I'm writing a service. But I'd like my
service to install an icon on the System Tray so that the user can start
/
stop / and otherwise control the service interactively, and without
having
to go to the Services applet. How do I do this?
Hmmm...I thought that services by definition were not allowed to have UI.
That would preclude the service itself from using the system tray for a
notify icon.
I do note that the "drop a NotifyIcon onto a Form" is just a shortcut for
instantiating a NotifyIcon instance. I suppose you could try doing that
from your service. But because of the above, I wouldn't expect it to
work.
If it doesn't work, as predicted, I would expect that the only solution
would be to do what you'd have to do anyway, which is to write an
independent application that communicates with the service, and which
presents the UI to the user. Including (or even limited to) a NotifyIcon,
if that's what you want.
Pete
.
- Follow-Ups:
- Re: How do I manually create an icon in the system tray?
- From: Peter Duniho
- Re: How do I manually create an icon in the system tray?
- References:
- How do I manually create an icon in the system tray?
- From: Joseph Geretz
- Re: How do I manually create an icon in the system tray?
- From: Peter Duniho
- How do I manually create an icon in the system tray?
- Prev by Date: Re: Why am I printing blank pages in RichTextBox when I use the M
- Next by Date: Re: how to correctly release a Reporting Services report (out of memory problem)
- Previous by thread: Re: How do I manually create an icon in the system tray?
- Next by thread: Re: How do I manually create an icon in the system tray?
- Index(es):
Relevant Pages
|
|