-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPBioManagerForm.cs
212 lines (187 loc) · 6.42 KB
/
PBioManagerForm.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Xml.Linq;
using System.Threading;
using System.Data.SqlClient;
namespace PBioManager
{
public partial class PBioManagerForm : Form
{
private System.ServiceProcess.ServiceController sc;
private int conexionesServidos;
public PBioManagerForm()
{
InitializeComponent();
try
{
sc = new System.ServiceProcess.ServiceController("PBioSvc");
}
catch{
sc = null;
}
conexionesServidos = 0;
timerUpdateSimGrid.Start();
}
private void timerUpdateSimGrid_Tick(object sender, EventArgs e)
{
if (sc != null) sc.Refresh();
setDisplay();
//vistaSimulacionTableAdapter.Fill(this.webappDBDataSet.VistaSimulación);
simsState_toolStripStatusLabel.Text = DateTime.Now.ToShortTimeString();
}
private void setDisplay()
{
if (sc != null)
{
svcState_toolStripStatusLabel.Text = sc.Status.ToString();
if (sc.Status == System.ServiceProcess.ServiceControllerStatus.Running)
{
this.runToolStripMenuItem.Enabled = false;
this.stopToolStripMenuItem.Enabled = true;
}
else
{
this.runToolStripMenuItem.Enabled = true;
this.stopToolStripMenuItem.Enabled = false;
}
}
else
{
svcState_toolStripStatusLabel.Text = "Unknown";
}
}
/* EVENTOS
*
*/
private void gridToolStripMenuItem_Click(object sender, EventArgs e)
{
FormSimulationsGrid simsForm = new FormSimulationsGrid();
simsForm.MdiParent = this;
simsForm.Show();
}
private void addToolStripMenuItem1_Click(object sender, EventArgs e)
{
FormSimulationState newSimStateForm = new FormSimulationState();
newSimStateForm.MdiParent = this;
newSimStateForm.Show();
}
private void gridToolStripMenuItem1_Click(object sender, EventArgs e)
{
FormSimulationStatesGrid simStates = new FormSimulationStatesGrid();
simStates.MdiParent = this;
simStates.Show();
}
private void addToolStripMenuItem_Click(object sender, EventArgs e)
{
FormSimulation sForm = new FormSimulation();
sForm.MdiParent = this;
sForm.Show();
}
private void addToolStripMenuItem5_Click(object sender, EventArgs e)
{
FormClasificationMethod cForm = new FormClasificationMethod();
cForm.MdiParent = this;
cForm.Show();
}
private void gridToolStripMenuItem5_Click(object sender, EventArgs e)
{
FormClasificationMethodsGrid clasificationForm = new FormClasificationMethodsGrid();
clasificationForm.MdiParent = this;
clasificationForm.Show();
}
private void addToolStripMenuItem6_Click(object sender, EventArgs e)
{
FormSelectionMethod sForm = new FormSelectionMethod();
sForm.MdiParent = this;
sForm.Show();
}
private void gridToolStripMenuItem6_Click(object sender, EventArgs e)
{
FormSelectionMethodsGrid sForm = new FormSelectionMethodsGrid();
sForm.MdiParent = this;
sForm.Show();
}
private void runToolStripMenuItem_Click(object sender, EventArgs e)
{
if (sc.Status != System.ServiceProcess.ServiceControllerStatus.Running)
{
sc.Start();
}
}
private void stopToolStripMenuItem_Click(object sender, EventArgs e)
{
if (sc.Status == System.ServiceProcess.ServiceControllerStatus.Running)
{
try
{
sc.Stop();
}
catch(Exception ex)
{
DialogResult resp = MessageBox.Show(
ex.Message,
"Can not stop the service",
MessageBoxButtons.OK,
MessageBoxIcon.Error
);
}
}
}
private void gridToolStripMenuItem4_Click(object sender, EventArgs e)
{
FormProjectsGrid pgForm = new FormProjectsGrid();
pgForm.MdiParent = this;
pgForm.Show();
}
private void addToolStripMenuItem4_Click(object sender, EventArgs e)
{
FormProject pForm = new FormProject();
pForm.MdiParent = this;
pForm.Show();
}
private void gridToolStripMenuItem2_Click(object sender, EventArgs e)
{
FormFoldersGrid fgForm = new FormFoldersGrid();
fgForm.MdiParent = this;
fgForm.Show();
}
private void addToolStripMenuItem2_Click(object sender, EventArgs e)
{
FormFolder fFolder = new FormFolder();
fFolder.MdiParent = this;
fFolder.Show();
}
private void addToolStripMenuItem3_Click(object sender, EventArgs e)
{
FormFile fFile = new FormFile();
fFile.MdiParent = this;
fFile.Show();
}
private void gridToolStripMenuItem3_Click(object sender, EventArgs e)
{
FormFilesGrid fFilesGrid = new FormFilesGrid();
fFilesGrid.MdiParent = this;
fFilesGrid.Show();
}
private void logToolStripMenuItem_Click(object sender, EventArgs e)
{
FormLogsGrid fLogsGrid = new FormLogsGrid();
fLogsGrid.MdiParent = this;
fLogsGrid.Show();
}
private void resultsToolStripMenuItem_Click(object sender, EventArgs e)
{
FormResultsGrid fResultsGrid = new FormResultsGrid();
fResultsGrid.MdiParent = this;
fResultsGrid.Show();
}
}
}