Single instance of application
-
Hi, Using synchronization object, I can restrict the number of instances of my application to one. How can I achieve the same, when the system is on network?
-
Hi, Using synchronization object, I can restrict the number of instances of my application to one. How can I achieve the same, when the system is on network?
What about broadcasting a custom UDP message over the network? If any of your application is running over somewhere in the network, sent back another reply. Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.
-
Hi, Using synchronization object, I can restrict the number of instances of my application to one. How can I achieve the same, when the system is on network?
-
Hi, Using synchronization object, I can restrict the number of instances of my application to one. How can I achieve the same, when the system is on network?
Hmmm - is it possible that you want to achieve this so you can ensure there's only one person accessing a resource on the network somewhere? If it's a file, you could try locking the file appropriately...or you could do the job the safe and assurable way, and hide the resource behind a server, so the server is the only thing that can access it, giving you control again.