Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 2005 > C# 2005
|
C# 2005 For discussion of Visual C# 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 11th, 2007, 03:39 PM
Friend of Wrox
 
Join Date: Dec 2006
Posts: 176
Thanks: 0
Thanked 0 Times in 0 Posts
Default run application more than once!!!!

hi,
i have a desktop application
for each click the executed file ,an instance of app have benn runnig

i want my dont run app by clicking on the exec file when that is running

help me pleas
 
Old February 11th, 2007, 10:10 PM
Registered User
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

System.Threading.Mutex mutexMyapplication = new System.Threading.Mutex(false, "MyApplication");
if(!mutexMyapplication.WaitOne(100, false))
  return;


 
Old February 12th, 2007, 03:53 PM
Friend of Wrox
 
Join Date: Dec 2006
Posts: 176
Thanks: 0
Thanked 0 Times in 0 Posts
Default

hi vampirekiss

i want to thank you for your help

best regards

kiani,mehdi





Similar Threads
Thread Thread Starter Forum Replies Last Post
COM Exception while run the C# Application saravanan.k General .NET 0 March 19th, 2007 09:07 AM
run application without .NetFramework !!!!! angelboy C# 2005 2 January 17th, 2007 04:24 PM
Not able to run my application twice! nicky05 Excel VBA 0 August 26th, 2005 04:44 AM
How to run servlet under application? kuterka Servlets 1 February 11th, 2005 08:21 AM
automatic run of an application deb_prgmr Visual Basic 2005 Basics 0 December 20th, 2004 09:37 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.