4

here で説明されているアプローチを使用して、単一インスタンス アプリケーションを構築しようとしています。

このソリューションを試した理由は、アプリを起動する 2 回目の試行から最初のインスタンスにコマンドラインを渡す必要があり、これが最も簡単な方法だと思われたからです。

サポートする必要がある OS フレーバー:

  • Windows XP SP3
  • Windows 7 32 ビット
  • Windows 7 64 ビット

3つのOSバージョンすべてで動作していますが、Windows 7 32Bitを搭載したマシンが1つあり、これが CantStartSingleInstanceException でクラッシュします

コードは次のとおりです。

SingleInstanceController.cs:

using System;
using Microsoft.VisualBasic.ApplicationServices;

namespace SingleInstanceTest
{
  public class SingleInstanceController : WindowsFormsApplicationBase
  {
    public SingleInstanceController()
    {
      IsSingleInstance = true;
    }

    protected override void OnCreateMainForm()
    {
      base.OnCreateMainForm();

      Form1 f = new Form1();
      MainForm = f;

      // process first command line
      f.SetCommandLine(Environment.GetCommandLineArgs());
    }

    protected override void OnStartupNextInstance(StartupNextInstanceEventArgs eventArgs)
    {
      base.OnStartupNextInstance(eventArgs);

      Form1 f = MainForm as Form1;

      // process subsequent command lines
      f.SetCommandLine(eventArgs.CommandLine);
    }
  }
}

Program.cs:

using System;
using System.Windows.Forms;

namespace SingleInstanceTest
{
  static class Program
  {
    [STAThread]
    static void Main()
    {
      AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
      Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);

      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      SingleInstanceController si = new SingleInstanceController();

      // This triggers the crash on one machine when starting the
      // app for the second time
      si.Run(Environment.GetCommandLineArgs());
    }

    static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
    {
      // this is triggered with CantStartSingleInstanceException
      MessageBox.Show(e.ToString(),"ThreadException");
      MessageBox.Show(e.Exception.ToString(), "ThreadException");
    }

    static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
      MessageBox.Show(e.ToString(), "UnhandledException");
      MessageBox.Show(e.ExceptionObject.ToString(), "UnhandledException");
    }
  }
}

テスト目的のため、このフォームは、コマンド ライン引数を表示するリスト ボックスを含む単純なフォームです。

これがその1台のマシンで機能しない理由はありますか? 私はこれを2日間いじっていますが、理解できません...

4

1 に答える 1