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.
 
Back
Top