You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
9 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Data.SqlClient;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace InjectionSearch
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 应用程序的主入口点。
|
||
|
/// </summary>
|
||
|
|
||
|
public static SqlConnection DBConn; //数据库连接串
|
||
|
public static string station;
|
||
|
public static string StationID;
|
||
|
public static string OperatorName;
|
||
|
public static string IP;
|
||
|
public static string Shift; //班次
|
||
|
public static string ProductDate;
|
||
|
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
bool isRuned;
|
||
|
System.Threading.Mutex mutex = new System.Threading.Mutex(true, "OnlyRunOneInstance", out isRuned);
|
||
|
|
||
|
if (isRuned)
|
||
|
{
|
||
|
Application.EnableVisualStyles();
|
||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
Application.Run(new FrmLogin());
|
||
|
mutex.ReleaseMutex();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
MessageBox.Show("程序已启动!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|