Windows service user interface

  • Thread starter Thread starter Gita George
  • Start date Start date
G

Gita George

What is the best way to provide a user interface to a Windows service?
Should I use DDE or remoting? How can I do that?


Thanks.
 
Hi,

It should definitely be NOT DDE. DDE is a completely obsolete technology
that should be avoided. On the other hand, remoting seems to be the best
choices unless your service should have no or limited network access. If
this is the case, consider using shared memory through memory-mapped files -
but you might need to interop with low-level Windows API to do that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top