I am working on the application (C# 2.0). I have implemented single instance in it. Everything is fine.
If i run the application again, it shows messagebox saying \"instanc
The easiest way to implement a single instance and to inform the first one if a second is started is already implement in .Net. Just take a look into the following links:
Hanselman: Single Instance WinForms
OpenWinForms (select True Single Instance application)