I've written a service that processes some files at a specified time. Every now and then, I need to process these files immediately. What's the best way to accomplish this when services don't make it easy for you to interact with the desktop?
I'd like to use something like a notifyicon in the system tray, but everywhere I look, I keep seeing posts that say this is a bad idea and recommend writing another app for communicating with the service. I'm willing to try this, but it looks like this only controls the service (stop, start, pause, etc), and not the code within the service. Am I wrong? If so, how do you trigger the specific sub?
I'd like to use something like a notifyicon in the system tray, but everywhere I look, I keep seeing posts that say this is a bad idea and recommend writing another app for communicating with the service. I'm willing to try this, but it looks like this only controls the service (stop, start, pause, etc), and not the code within the service. Am I wrong? If so, how do you trigger the specific sub?