I have a windows service that has a timer control and notifyicon class. For
every 5000 milliseconds the service polls the server to see if new database
records are available, if present it gives a pop-up message through the
notify icon. I have written the code in the timer1_tick event. I am not able
to debug to that event, if I follow the standard debugging procedures
outlined in MSDN. Also if I just compile and release version and deploy it,
I never get any message through the icon. I did try to make the icon
visible/invisible through the service start/stop method which works fine. I
have my timer enabled. I am not sure what would be wrong, as the debug is
not working..
Any help is appreciated..
Thanks
VJ
Ramesh K - 20 Apr 2004 14:30 GMT
you need to unregister the component as service and register as an EXE from
the command prompt, if the component is built with COM.
Ramesh
> I have a windows service that has a timer control and notifyicon class. For
> every 5000 milliseconds the service polls the server to see if new database
[quoted text clipped - 10 lines]
> Thanks
> VJ