Hi every one,
I want to create an application that check updates of running windows application using c# code. Please give me scenario.
Any suggestions are appreciated
Thanks in advanced
Other
You can try this way
1. Create a table in your Database that must have two column which store your application product key and version.
2. Create a Web Service. Web Service's method receive application product key(a unique id which identify your application in database) and match to database and return application version.
3. In your application, add web service references and call web service method and pass application product key. Receive product version which mention in database and match your application version.