I need to implement an application based on a client server, where the client is a Windows application. Now I plan to create a web service as a server application and use it in our client application. But the problem is the notification. To do this, I need to add a timer to the client application to check the notification. This slows down the client application.
What is the best way to do this?
I need to create an installation for both applications. Therefore, the solution must be deployed.
Edit: I cannot put a timer in a background or separate thread because I need to update the datagridview immediately.
source
share