Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
10answers
3k views

How to make sure that there is one instance of the application is running

I want to check when the user double click on applictaion icon that no another instance of this application is already running. I read about My.Application but i still don't know what to do.
3
votes
5answers
645 views

How to create a single instance application in C

What would be your suggestion in order to create a single instance application? File lock, mutex or what?
1
vote
4answers
308 views

How to check if a WPF application is already running? [closed]

Possible Duplicate: What is the correct way to create a single instance application? How can I check if my application is already open? If my application is already running, I want to show ...
1
vote
2answers
1k views

How to pass arguments to a console application if it is already running?

I use a Console Application in Windows Mobile to handle incoming message interception. In the same console application i accept parameters (string args[]) which based on the parameters, register the ...
1
vote
2answers
650 views

open program once with multiple files as arguments from explorer

I have a program that works when, a file is opened with it using the right click menu in explorer. But if I select multiple files and then right click and open with my program then it opens multiple ...
1
vote
3answers
2k views

Passing data to .NET C# WPF applications/DLLs

I have a .NET C# WPF application that I am trying to make into a single-instance application using a Mutex. This .NET application is called by a C++-based DLL using CreateProcessAsUser() and is ...
0
votes
0answers
107 views

FTP Multiple files in one FTP session .NET

I am designing a system that needs to upload and download multiple files in a synchronization procedure. The problem I have come across is that .NET does not seem to be able to connect to an FTP ...
0
votes
1answer
65 views

Is it possible to run only one instance of WiX msi at the same time?

I have .Net product with msi installer implemented using WiX. Now it is possible to run several instances of my installer at the same time. I am wondering whether it's possible to restrict run more ...
0
votes
1answer
381 views

Single instance app with message passing via cmd line?

I have a C# app that is launched via command line. Usually data is pass through the command line such as add (app -a string). I would like only ONE instance of the app to be opened and if more strings ...
0
votes
1answer
642 views

Creating a WCF service object with InstanceContext object

I have a WCF service with single instance. I have consume it in silverlight and windows forms also. It's working fine in silverlight application but in windows it not create an service object. it tell ...