2022年8月10日 星期三

[C#]限定只開啟一個程序,防止重複啟動

 Main 中加入 以下

static void Main()
{
  //Other
  bool ret;
  System.Threading.Mutex mutex = new System.Threading.Mutex(true, Application.ProductName, out ret);
  if (ret)
  {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new Form1());
  }
  else
  {
    MessageBox.Show(null, "This process is running.", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Warning);
    //   提示信息,可以刪除。  
    Application.Exit();//退出程式  
  }

}

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...