You must Sign In to post a response.
  • Category: Windows 10

    How to Check the Windows already Open

    I have Menu Bar Like Transaction when i am click ,open the Create transaction window should be open .
    again i am going to try to open the Create Transaction window .

    how to give the warning Message like "Already create Transaction Window opened"

    how to check the window currently open or Not ?
    if i am click the opened window , give some warning message and show the old opened window.?
    Lee!
  • #769837
    Hi,
    I'm assuming that you have to use thread synchronisation Mutex and restrict the number of instances / windows....

    Sample:

    Boolean isNewWindow;

    var mutex = new Mutex(true, mutexName, out isNewWindow);

    if (!isNewWindow)
    {
    //If createdNew is false that means an instance of application is already running for this
    // user.
    //So in this case stop the application from executing.
    return;
    }


  • Sign In to post your comments