Can window be created in a window service?
-
hello everyone: In a window service, I want to create a dummy window for receiving some messages from other exe. Is it possible? Thanks. -Freehawk
-
hello everyone: In a window service, I want to create a dummy window for receiving some messages from other exe. Is it possible? Thanks. -Freehawk
I have something important to ask you... What???? I don't understand what is it that you want? :^)
-
hello everyone: In a window service, I want to create a dummy window for receiving some messages from other exe. Is it possible? Thanks. -Freehawk
-
hello everyone: In a window service, I want to create a dummy window for receiving some messages from other exe. Is it possible? Thanks. -Freehawk
Even if you can, don't. Where it displays will be indeterminate. The whole point of a service is that you don't need a UI. If you need a UI, you're not writing a service. Your best bet is to write a separate application for getting your messages, and pass messages to your service as necessary. Either that, or you can log to disk.