How can i start a Program (With a GUI) when the user logs in. Later a new user logs in and sees the Same GUI still running?

Travis Kintz 1 Reputation point
2021-08-26T20:10:30.457+00:00

I have to have a GUI that an operator can enter data in to start a test. Once the test is running the GUI displays the status of the test. Most test take several hours. The user can not stay logged in and other users need to be able to log in and see the progress of the test. My first thought was a service but I can't have a GUI in a service. What is the best way to tie the GUI to the Service or at the very least have the service pump data to the GUI?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,647 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sam of Simple Samples 5,531 Reputation points
    2021-08-26T21:37:10.38+00:00

    You can use Windows Communication Foundation for your service to communicate with a UI. There are many articles about that. Microsoft however is discontinuing WCF; you can still use it but gRPC is the new technology.

    0 comments No comments