How to know numeric of instance...
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I write an application in C# but I don't want user run it more one instance. How do I know numeric of instance of this app when user fire it? And how to I resolve this problem? Please help me. Thanks. H.Dung
-
Hi, I write an application in C# but I don't want user run it more one instance. How do I know numeric of instance of this app when user fire it? And how to I resolve this problem? Please help me. Thanks. H.Dung
-
The standard way is to use a mutex to control access. See this article for a class that does it. http://www.codeproject.com/csharp/cssingprocess.asp[^]
Hi, Thanks you very much. H.Dung