forked from ahmedtalaat327/Spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
78 lines (66 loc) · 2.66 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#region Copyright Syncfusion Inc. 2001 - 2016
// Copyright Syncfusion Inc. 2001 - 2016. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using Spring.AccioHelpers;
using Spring.View.MainView.LoginView;
using System;
using System.Threading;
using System.Windows.Forms;
namespace Spring
{
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
public static void Main(string[] args)
{
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("@31392e342e30VWUcNs2WlbEH2rOhqfAsaLLoQ60+yWpw1tdxvkTqCfg=");
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new DockingManagerForm());
//check if the thread of the app is already running avoid multiple exe at same time!
PragmaChecker.UniqueEXERun();
}
}
static class PragmaChecker
{
public static void UniqueEXERun()
{
Mutex mutex = new System.Threading.Mutex(false, "ACCIO_FORM_RUNNING");
try
{
if (mutex.WaitOne(0, false))
{
//we should test if data file is there or not if not let there be a message telling the user !
try
{
var data = AccioEasyHelpers.ReadTxTFiles(AccioEasyHelpers.MeExistanceLocation().Substring(0, AccioEasyHelpers.MeExistanceLocation().Length - ("Spring.exe").Length) + "init\\params.info");
}
catch { MessageBox.Show("The data file is missing or files in there not exist."); }
//run the actual class [represents form main form]
Application.Run(new LoginForm());
// Application.Run(new DockingManagerForm());
}
else
{
MessageBox.Show("An instance of the application is already running!", "No possible to open another window", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
}
}
finally
{
if (mutex != null)
{
mutex.Close();
mutex = null;
}
}
}
}
}