Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6091817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:22:17+00:00 2026-05-23T12:22:17+00:00

Application c:\pinkPanther.exe is running and it is application i wrote in c#. Some other

  • 0

Application c:\pinkPanther.exe is running and it is application i wrote in c#.
Some other application starts c:\pinkPanther.exe purpleAligator greenGazelle OrangeOrangutan and i would like not to start new instance of c:\pinkPanther.exe with these arguments, but to currently running c:\pinkPanther.exe register it and react to it somehow.

How to do it?

EDIT!!!: i’m very sorry about pinkPanther.exe and ruzovyJeliman.exe that caused the confusion – i translated question from my native language and missed it 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:22:17+00:00Added an answer on May 23, 2026 at 12:22 pm

    To communicate with the other instance of the application, you need some sort of inter-process communication. Apparently, WCF is the recommended form of IPC in .Net. You can do that with code like this (using WPF, but WinForms would be similar):

    [ServiceContract]
    public interface ISingletonProgram
    {
        [OperationContract]
        void CallWithArguments(string[] args);
    }
    
    class SingletonProgram : ISingletonProgram
    {
        public void CallWithArguments(string[] args)
        {
            // handle the arguments somehow
        }
    }
    
    public partial class App : Application
    {
        private readonly Mutex m_mutex;
        private ServiceHost m_serviceHost;
        private static string EndpointUri =
            "net.pipe://localhost/RuzovyJeliman/singletonProgram";
    
        public App()
        {
            // find out whether other instance exists
            bool createdNew;
            m_mutex = new Mutex(true, "RůžovýJeliman", out createdNew);
    
            if (!createdNew)
            {
                // other instance exists, call it and exit
                CallService();
                Shutdown();
                return;
            }
    
            // other instance does not exist
            // start the service to accept calls and show UI
            StartService();
    
            // show the main window here
            // you can also process this instance's command line arguments
        }
    
        private static void CallService()
        {
            var factory = new ChannelFactory<ISingletonProgram>(
                new NetNamedPipeBinding(NetNamedPipeSecurityMode.None), EndpointUri);
    
            var singletonProgram = factory.CreateChannel();
            singletonProgram.CallWithArguments(Environment.GetCommandLineArgs());
        }
    
        private void StartService()
        {
            m_serviceHost = new ServiceHost(typeof(SingletonProgram));
            m_serviceHost.AddServiceEndpoint(
                typeof(ISingletonProgram),
                new NetNamedPipeBinding(NetNamedPipeSecurityMode.None),
                EndpointUri);
    
            m_serviceHost.Open();
        }
    
        protected override void OnExit(ExitEventArgs e)
        {
            if (m_serviceHost != null)
                m_serviceHost.Close();
    
            m_mutex.Dispose();
            base.OnExit(e);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My application has one activity which starts two services but does not bind them.
Application is running in my local system app.config file <add key=dbconn value=Data Source=(local);database=VTech;User ID=sa;Password=sa;
Application launch through Java web start(JWS) checks for update when we are launching it.
Application-Stack: Rails3, CanCan, Devise, Shoulda I've got some nested Resources and want to test
Application I am developing does some kind of server-side authorization. Communication is done via
Application running in django, apache, python and mysql: I want to create global variable
application = webapp.WSGIApplication( [(r'/main/profile/([a-f0-9]{40})', ProfileHandler)], debug=True) The regex in the above parameter will not
My application is not all to complicated. It retrieves a single entity from a
Application Error An error occurred in the application and your page could not be
My application that is not on Play Store verify on the web If there

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.