comparison ServerMonitor/Forms/CheckForm.Designer.cs @ 0:3e1a2131f897

Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
author Brad Greco <brad@bgreco.net>
date Mon, 31 Dec 2018 18:32:14 -0500
parents
children 3142e52cbe69
comparison
equal deleted inserted replaced
-1:000000000000 0:3e1a2131f897
1 namespace ServerMonitorApp
2 {
3 partial class CheckForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.CheckTypeLabel = new System.Windows.Forms.Label();
32 this.CheckTypeComboBox = new System.Windows.Forms.ComboBox();
33 this.CheckTypePanel = new System.Windows.Forms.Panel();
34 this.TypeHelpPictureBox = new System.Windows.Forms.PictureBox();
35 this.GeneralGroupBox = new System.Windows.Forms.GroupBox();
36 this.ScheduleAtPanel = new System.Windows.Forms.Panel();
37 this.AtTimePicker = new System.Windows.Forms.DateTimePicker();
38 this.ScheduleAtLabel = new System.Windows.Forms.Label();
39 this.ScheduleBetweenPanel = new System.Windows.Forms.Panel();
40 this.ScheduleBetweenAndLabel = new System.Windows.Forms.Label();
41 this.EndTimePicker = new System.Windows.Forms.DateTimePicker();
42 this.StartTimePicker = new System.Windows.Forms.DateTimePicker();
43 this.ScheduleBetweenLabel = new System.Windows.Forms.Label();
44 this.FrequencyUnitsComboBox = new System.Windows.Forms.ComboBox();
45 this.ScheduleEveryLabel = new System.Windows.Forms.Label();
46 this.FrequencyUpDown = new System.Windows.Forms.NumericUpDown();
47 this.TimeoutInput = new System.Windows.Forms.NumericUpDown();
48 this.PingTimeoutLabel = new System.Windows.Forms.Label();
49 this.ScheduleLabel = new System.Windows.Forms.Label();
50 this.NameLabel = new System.Windows.Forms.Label();
51 this.NameTextBox = new System.Windows.Forms.TextBox();
52 this.EnabledCheckBox = new System.Windows.Forms.CheckBox();
53 this.OkButton = new System.Windows.Forms.Button();
54 this.CancelCheckButton = new System.Windows.Forms.Button();
55 this.CheckSettingsPanel = new System.Windows.Forms.Panel();
56 this.ResultLabel = new System.Windows.Forms.Label();
57 this.ResultIconPictureBox = new System.Windows.Forms.PictureBox();
58 this.CancelRunButton = new System.Windows.Forms.Button();
59 this.RunButton = new System.Windows.Forms.Button();
60 this.CheckTypePanel.SuspendLayout();
61 ((System.ComponentModel.ISupportInitialize)(this.TypeHelpPictureBox)).BeginInit();
62 this.GeneralGroupBox.SuspendLayout();
63 this.ScheduleAtPanel.SuspendLayout();
64 this.ScheduleBetweenPanel.SuspendLayout();
65 ((System.ComponentModel.ISupportInitialize)(this.FrequencyUpDown)).BeginInit();
66 ((System.ComponentModel.ISupportInitialize)(this.TimeoutInput)).BeginInit();
67 ((System.ComponentModel.ISupportInitialize)(this.ResultIconPictureBox)).BeginInit();
68 this.SuspendLayout();
69 //
70 // CheckTypeLabel
71 //
72 this.CheckTypeLabel.AutoSize = true;
73 this.CheckTypeLabel.Location = new System.Drawing.Point(3, 3);
74 this.CheckTypeLabel.Name = "CheckTypeLabel";
75 this.CheckTypeLabel.Size = new System.Drawing.Size(64, 13);
76 this.CheckTypeLabel.TabIndex = 0;
77 this.CheckTypeLabel.Text = "Check type:";
78 //
79 // CheckTypeComboBox
80 //
81 this.CheckTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
82 this.CheckTypeComboBox.FormattingEnabled = true;
83 this.CheckTypeComboBox.Location = new System.Drawing.Point(73, 0);
84 this.CheckTypeComboBox.Name = "CheckTypeComboBox";
85 this.CheckTypeComboBox.Size = new System.Drawing.Size(121, 21);
86 this.CheckTypeComboBox.TabIndex = 1;
87 this.CheckTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.CheckTypeComboBox_SelectedIndexChanged);
88 this.CheckTypeComboBox.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.CheckTypeComboBox_Format);
89 //
90 // CheckTypePanel
91 //
92 this.CheckTypePanel.Anchor = System.Windows.Forms.AnchorStyles.Top;
93 this.CheckTypePanel.Controls.Add(this.CheckTypeLabel);
94 this.CheckTypePanel.Controls.Add(this.TypeHelpPictureBox);
95 this.CheckTypePanel.Controls.Add(this.CheckTypeComboBox);
96 this.CheckTypePanel.Location = new System.Drawing.Point(162, 12);
97 this.CheckTypePanel.Name = "CheckTypePanel";
98 this.CheckTypePanel.Size = new System.Drawing.Size(227, 26);
99 this.CheckTypePanel.TabIndex = 1;
100 //
101 // TypeHelpPictureBox
102 //
103 this.TypeHelpPictureBox.Cursor = System.Windows.Forms.Cursors.Hand;
104 this.TypeHelpPictureBox.Image = global::ServerMonitorApp.Properties.Resources.help;
105 this.TypeHelpPictureBox.Location = new System.Drawing.Point(200, 0);
106 this.TypeHelpPictureBox.Name = "TypeHelpPictureBox";
107 this.TypeHelpPictureBox.Size = new System.Drawing.Size(20, 20);
108 this.TypeHelpPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
109 this.TypeHelpPictureBox.TabIndex = 1;
110 this.TypeHelpPictureBox.TabStop = false;
111 this.TypeHelpPictureBox.Click += new System.EventHandler(this.TypeHelpPictureBox_Click);
112 //
113 // GeneralGroupBox
114 //
115 this.GeneralGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
116 | System.Windows.Forms.AnchorStyles.Right)));
117 this.GeneralGroupBox.Controls.Add(this.ScheduleAtPanel);
118 this.GeneralGroupBox.Controls.Add(this.ScheduleBetweenPanel);
119 this.GeneralGroupBox.Controls.Add(this.FrequencyUnitsComboBox);
120 this.GeneralGroupBox.Controls.Add(this.ScheduleEveryLabel);
121 this.GeneralGroupBox.Controls.Add(this.FrequencyUpDown);
122 this.GeneralGroupBox.Controls.Add(this.TimeoutInput);
123 this.GeneralGroupBox.Controls.Add(this.PingTimeoutLabel);
124 this.GeneralGroupBox.Controls.Add(this.ScheduleLabel);
125 this.GeneralGroupBox.Controls.Add(this.NameLabel);
126 this.GeneralGroupBox.Controls.Add(this.NameTextBox);
127 this.GeneralGroupBox.Controls.Add(this.EnabledCheckBox);
128 this.GeneralGroupBox.Location = new System.Drawing.Point(12, 39);
129 this.GeneralGroupBox.Name = "GeneralGroupBox";
130 this.GeneralGroupBox.Size = new System.Drawing.Size(526, 115);
131 this.GeneralGroupBox.TabIndex = 2;
132 this.GeneralGroupBox.TabStop = false;
133 this.GeneralGroupBox.Text = "General settings";
134 //
135 // ScheduleAtPanel
136 //
137 this.ScheduleAtPanel.Controls.Add(this.AtTimePicker);
138 this.ScheduleAtPanel.Controls.Add(this.ScheduleAtLabel);
139 this.ScheduleAtPanel.Location = new System.Drawing.Point(247, 76);
140 this.ScheduleAtPanel.Name = "ScheduleAtPanel";
141 this.ScheduleAtPanel.Size = new System.Drawing.Size(270, 29);
142 this.ScheduleAtPanel.TabIndex = 32;
143 this.ScheduleAtPanel.Visible = false;
144 //
145 // AtTimePicker
146 //
147 this.AtTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Time;
148 this.AtTimePicker.Location = new System.Drawing.Point(21, 4);
149 this.AtTimePicker.Name = "AtTimePicker";
150 this.AtTimePicker.ShowUpDown = true;
151 this.AtTimePicker.Size = new System.Drawing.Size(85, 20);
152 this.AtTimePicker.TabIndex = 1;
153 this.AtTimePicker.Value = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
154 //
155 // ScheduleAtLabel
156 //
157 this.ScheduleAtLabel.AutoSize = true;
158 this.ScheduleAtLabel.Location = new System.Drawing.Point(3, 6);
159 this.ScheduleAtLabel.Name = "ScheduleAtLabel";
160 this.ScheduleAtLabel.Size = new System.Drawing.Size(16, 13);
161 this.ScheduleAtLabel.TabIndex = 0;
162 this.ScheduleAtLabel.Text = "at";
163 //
164 // ScheduleBetweenPanel
165 //
166 this.ScheduleBetweenPanel.Controls.Add(this.ScheduleBetweenAndLabel);
167 this.ScheduleBetweenPanel.Controls.Add(this.EndTimePicker);
168 this.ScheduleBetweenPanel.Controls.Add(this.StartTimePicker);
169 this.ScheduleBetweenPanel.Controls.Add(this.ScheduleBetweenLabel);
170 this.ScheduleBetweenPanel.Location = new System.Drawing.Point(247, 76);
171 this.ScheduleBetweenPanel.Name = "ScheduleBetweenPanel";
172 this.ScheduleBetweenPanel.Size = new System.Drawing.Size(270, 29);
173 this.ScheduleBetweenPanel.TabIndex = 31;
174 //
175 // ScheduleBetweenAndLabel
176 //
177 this.ScheduleBetweenAndLabel.AutoSize = true;
178 this.ScheduleBetweenAndLabel.Location = new System.Drawing.Point(138, 6);
179 this.ScheduleBetweenAndLabel.Name = "ScheduleBetweenAndLabel";
180 this.ScheduleBetweenAndLabel.Size = new System.Drawing.Size(25, 13);
181 this.ScheduleBetweenAndLabel.TabIndex = 3;
182 this.ScheduleBetweenAndLabel.Text = "and";
183 //
184 // EndTimePicker
185 //
186 this.EndTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Time;
187 this.EndTimePicker.Location = new System.Drawing.Point(167, 4);
188 this.EndTimePicker.Name = "EndTimePicker";
189 this.EndTimePicker.ShowUpDown = true;
190 this.EndTimePicker.Size = new System.Drawing.Size(85, 20);
191 this.EndTimePicker.TabIndex = 2;
192 this.EndTimePicker.Value = new System.DateTime(1970, 1, 1, 23, 59, 59, 0);
193 //
194 // StartTimePicker
195 //
196 this.StartTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Time;
197 this.StartTimePicker.Location = new System.Drawing.Point(51, 4);
198 this.StartTimePicker.Name = "StartTimePicker";
199 this.StartTimePicker.ShowUpDown = true;
200 this.StartTimePicker.Size = new System.Drawing.Size(85, 20);
201 this.StartTimePicker.TabIndex = 1;
202 this.StartTimePicker.Value = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
203 //
204 // ScheduleBetweenLabel
205 //
206 this.ScheduleBetweenLabel.AutoSize = true;
207 this.ScheduleBetweenLabel.Location = new System.Drawing.Point(3, 6);
208 this.ScheduleBetweenLabel.Name = "ScheduleBetweenLabel";
209 this.ScheduleBetweenLabel.Size = new System.Drawing.Size(48, 13);
210 this.ScheduleBetweenLabel.TabIndex = 0;
211 this.ScheduleBetweenLabel.Text = "between";
212 //
213 // FrequencyUnitsComboBox
214 //
215 this.FrequencyUnitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
216 this.FrequencyUnitsComboBox.FormattingEnabled = true;
217 this.FrequencyUnitsComboBox.Location = new System.Drawing.Point(169, 79);
218 this.FrequencyUnitsComboBox.Name = "FrequencyUnitsComboBox";
219 this.FrequencyUnitsComboBox.Size = new System.Drawing.Size(75, 21);
220 this.FrequencyUnitsComboBox.TabIndex = 30;
221 this.FrequencyUnitsComboBox.SelectedIndexChanged += new System.EventHandler(this.FrequencyUnitsComboBox_SelectedIndexChanged);
222 this.FrequencyUnitsComboBox.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.FrequencyUnitsComboBox_Format);
223 //
224 // ScheduleEveryLabel
225 //
226 this.ScheduleEveryLabel.AutoSize = true;
227 this.ScheduleEveryLabel.Location = new System.Drawing.Point(78, 82);
228 this.ScheduleEveryLabel.Name = "ScheduleEveryLabel";
229 this.ScheduleEveryLabel.Size = new System.Drawing.Size(34, 13);
230 this.ScheduleEveryLabel.TabIndex = 29;
231 this.ScheduleEveryLabel.Text = "Every";
232 //
233 // FrequencyUpDown
234 //
235 this.FrequencyUpDown.Location = new System.Drawing.Point(114, 80);
236 this.FrequencyUpDown.Maximum = new decimal(new int[] {
237 59,
238 0,
239 0,
240 0});
241 this.FrequencyUpDown.Name = "FrequencyUpDown";
242 this.FrequencyUpDown.Size = new System.Drawing.Size(49, 20);
243 this.FrequencyUpDown.TabIndex = 28;
244 this.FrequencyUpDown.Value = new decimal(new int[] {
245 5,
246 0,
247 0,
248 0});
249 //
250 // TimeoutInput
251 //
252 this.TimeoutInput.Increment = new decimal(new int[] {
253 100,
254 0,
255 0,
256 0});
257 this.TimeoutInput.Location = new System.Drawing.Point(81, 54);
258 this.TimeoutInput.Maximum = new decimal(new int[] {
259 60000,
260 0,
261 0,
262 0});
263 this.TimeoutInput.Minimum = new decimal(new int[] {
264 1,
265 0,
266 0,
267 0});
268 this.TimeoutInput.Name = "TimeoutInput";
269 this.TimeoutInput.Size = new System.Drawing.Size(58, 20);
270 this.TimeoutInput.TabIndex = 27;
271 this.TimeoutInput.Value = new decimal(new int[] {
272 5000,
273 0,
274 0,
275 0});
276 //
277 // PingTimeoutLabel
278 //
279 this.PingTimeoutLabel.AutoSize = true;
280 this.PingTimeoutLabel.Location = new System.Drawing.Point(5, 56);
281 this.PingTimeoutLabel.Name = "PingTimeoutLabel";
282 this.PingTimeoutLabel.Size = new System.Drawing.Size(70, 13);
283 this.PingTimeoutLabel.TabIndex = 26;
284 this.PingTimeoutLabel.Text = "Timeout (ms):";
285 //
286 // ScheduleLabel
287 //
288 this.ScheduleLabel.AutoSize = true;
289 this.ScheduleLabel.Location = new System.Drawing.Point(6, 82);
290 this.ScheduleLabel.Name = "ScheduleLabel";
291 this.ScheduleLabel.Size = new System.Drawing.Size(55, 13);
292 this.ScheduleLabel.TabIndex = 25;
293 this.ScheduleLabel.Text = "Schedule:";
294 //
295 // NameLabel
296 //
297 this.NameLabel.AutoSize = true;
298 this.NameLabel.Location = new System.Drawing.Point(6, 31);
299 this.NameLabel.Name = "NameLabel";
300 this.NameLabel.Size = new System.Drawing.Size(38, 13);
301 this.NameLabel.TabIndex = 21;
302 this.NameLabel.Text = "Name:";
303 //
304 // NameTextBox
305 //
306 this.NameTextBox.Location = new System.Drawing.Point(81, 28);
307 this.NameTextBox.Name = "NameTextBox";
308 this.NameTextBox.Size = new System.Drawing.Size(181, 20);
309 this.NameTextBox.TabIndex = 22;
310 //
311 // EnabledCheckBox
312 //
313 this.EnabledCheckBox.AutoSize = true;
314 this.EnabledCheckBox.Checked = true;
315 this.EnabledCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
316 this.EnabledCheckBox.Location = new System.Drawing.Point(268, 31);
317 this.EnabledCheckBox.Name = "EnabledCheckBox";
318 this.EnabledCheckBox.Size = new System.Drawing.Size(65, 17);
319 this.EnabledCheckBox.TabIndex = 23;
320 this.EnabledCheckBox.Text = "Enabled";
321 this.EnabledCheckBox.UseVisualStyleBackColor = true;
322 //
323 // OkButton
324 //
325 this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
326 this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
327 this.OkButton.Location = new System.Drawing.Point(382, 397);
328 this.OkButton.Name = "OkButton";
329 this.OkButton.Size = new System.Drawing.Size(75, 23);
330 this.OkButton.TabIndex = 20;
331 this.OkButton.Text = "OK";
332 this.OkButton.UseVisualStyleBackColor = true;
333 this.OkButton.Click += new System.EventHandler(this.OkButton_Click);
334 //
335 // CancelCheckButton
336 //
337 this.CancelCheckButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
338 this.CancelCheckButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
339 this.CancelCheckButton.Location = new System.Drawing.Point(463, 397);
340 this.CancelCheckButton.Name = "CancelCheckButton";
341 this.CancelCheckButton.Size = new System.Drawing.Size(75, 23);
342 this.CancelCheckButton.TabIndex = 19;
343 this.CancelCheckButton.Text = "Cancel";
344 this.CancelCheckButton.UseVisualStyleBackColor = true;
345 this.CancelCheckButton.Click += new System.EventHandler(this.CancelCheckButton_Click);
346 //
347 // CheckSettingsPanel
348 //
349 this.CheckSettingsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
350 | System.Windows.Forms.AnchorStyles.Left)
351 | System.Windows.Forms.AnchorStyles.Right)));
352 this.CheckSettingsPanel.Location = new System.Drawing.Point(12, 160);
353 this.CheckSettingsPanel.Name = "CheckSettingsPanel";
354 this.CheckSettingsPanel.Size = new System.Drawing.Size(526, 231);
355 this.CheckSettingsPanel.TabIndex = 27;
356 //
357 // ResultLabel
358 //
359 this.ResultLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
360 | System.Windows.Forms.AnchorStyles.Right)));
361 this.ResultLabel.AutoEllipsis = true;
362 this.ResultLabel.Location = new System.Drawing.Point(115, 394);
363 this.ResultLabel.Name = "ResultLabel";
364 this.ResultLabel.Size = new System.Drawing.Size(261, 29);
365 this.ResultLabel.TabIndex = 29;
366 this.ResultLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
367 this.ResultLabel.Visible = false;
368 //
369 // ResultIconPictureBox
370 //
371 this.ResultIconPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
372 this.ResultIconPictureBox.Location = new System.Drawing.Point(93, 399);
373 this.ResultIconPictureBox.Name = "ResultIconPictureBox";
374 this.ResultIconPictureBox.Size = new System.Drawing.Size(20, 20);
375 this.ResultIconPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
376 this.ResultIconPictureBox.TabIndex = 30;
377 this.ResultIconPictureBox.TabStop = false;
378 this.ResultIconPictureBox.Visible = false;
379 //
380 // CancelRunButton
381 //
382 this.CancelRunButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
383 this.CancelRunButton.Image = global::ServerMonitorApp.Properties.Resources.delete;
384 this.CancelRunButton.Location = new System.Drawing.Point(93, 397);
385 this.CancelRunButton.Name = "CancelRunButton";
386 this.CancelRunButton.Size = new System.Drawing.Size(75, 23);
387 this.CancelRunButton.TabIndex = 28;
388 this.CancelRunButton.Text = "Cancel";
389 this.CancelRunButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
390 this.CancelRunButton.UseVisualStyleBackColor = true;
391 this.CancelRunButton.Visible = false;
392 this.CancelRunButton.Click += new System.EventHandler(this.CancelRunButton_Click);
393 //
394 // RunButton
395 //
396 this.RunButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
397 this.RunButton.Image = global::ServerMonitorApp.Properties.Resources.run;
398 this.RunButton.Location = new System.Drawing.Point(12, 397);
399 this.RunButton.Name = "RunButton";
400 this.RunButton.Size = new System.Drawing.Size(75, 23);
401 this.RunButton.TabIndex = 26;
402 this.RunButton.Text = "Run";
403 this.RunButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
404 this.RunButton.UseVisualStyleBackColor = true;
405 this.RunButton.Click += new System.EventHandler(this.RunButton_Click);
406 //
407 // CheckForm
408 //
409 this.AcceptButton = this.OkButton;
410 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
411 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
412 this.CancelButton = this.CancelCheckButton;
413 this.ClientSize = new System.Drawing.Size(550, 432);
414 this.Controls.Add(this.ResultIconPictureBox);
415 this.Controls.Add(this.ResultLabel);
416 this.Controls.Add(this.CancelRunButton);
417 this.Controls.Add(this.CheckSettingsPanel);
418 this.Controls.Add(this.RunButton);
419 this.Controls.Add(this.OkButton);
420 this.Controls.Add(this.CancelCheckButton);
421 this.Controls.Add(this.GeneralGroupBox);
422 this.Controls.Add(this.CheckTypePanel);
423 this.MinimumSize = new System.Drawing.Size(550, 38);
424 this.Name = "CheckForm";
425 this.Text = "CheckForm";
426 this.Load += new System.EventHandler(this.CheckForm_Load);
427 this.Click += new System.EventHandler(this.Control_Click);
428 this.CheckTypePanel.ResumeLayout(false);
429 this.CheckTypePanel.PerformLayout();
430 ((System.ComponentModel.ISupportInitialize)(this.TypeHelpPictureBox)).EndInit();
431 this.GeneralGroupBox.ResumeLayout(false);
432 this.GeneralGroupBox.PerformLayout();
433 this.ScheduleAtPanel.ResumeLayout(false);
434 this.ScheduleAtPanel.PerformLayout();
435 this.ScheduleBetweenPanel.ResumeLayout(false);
436 this.ScheduleBetweenPanel.PerformLayout();
437 ((System.ComponentModel.ISupportInitialize)(this.FrequencyUpDown)).EndInit();
438 ((System.ComponentModel.ISupportInitialize)(this.TimeoutInput)).EndInit();
439 ((System.ComponentModel.ISupportInitialize)(this.ResultIconPictureBox)).EndInit();
440 this.ResumeLayout(false);
441
442 }
443
444 #endregion
445
446 private System.Windows.Forms.Label CheckTypeLabel;
447 private System.Windows.Forms.PictureBox TypeHelpPictureBox;
448 private System.Windows.Forms.ComboBox CheckTypeComboBox;
449 private System.Windows.Forms.Panel CheckTypePanel;
450 private System.Windows.Forms.GroupBox GeneralGroupBox;
451 private System.Windows.Forms.Button OkButton;
452 private System.Windows.Forms.Button CancelCheckButton;
453 private System.Windows.Forms.Label NameLabel;
454 private System.Windows.Forms.TextBox NameTextBox;
455 private System.Windows.Forms.CheckBox EnabledCheckBox;
456 private System.Windows.Forms.Label ScheduleLabel;
457 private System.Windows.Forms.Button RunButton;
458 private System.Windows.Forms.Panel CheckSettingsPanel;
459 private System.Windows.Forms.Button CancelRunButton;
460 private System.Windows.Forms.Label ResultLabel;
461 private System.Windows.Forms.PictureBox ResultIconPictureBox;
462 private System.Windows.Forms.NumericUpDown TimeoutInput;
463 private System.Windows.Forms.Label PingTimeoutLabel;
464 private System.Windows.Forms.ComboBox FrequencyUnitsComboBox;
465 private System.Windows.Forms.Label ScheduleEveryLabel;
466 private System.Windows.Forms.NumericUpDown FrequencyUpDown;
467 private System.Windows.Forms.Panel ScheduleBetweenPanel;
468 private System.Windows.Forms.DateTimePicker StartTimePicker;
469 private System.Windows.Forms.Label ScheduleBetweenLabel;
470 private System.Windows.Forms.Label ScheduleBetweenAndLabel;
471 private System.Windows.Forms.DateTimePicker EndTimePicker;
472 private System.Windows.Forms.Panel ScheduleAtPanel;
473 private System.Windows.Forms.DateTimePicker AtTimePicker;
474 private System.Windows.Forms.Label ScheduleAtLabel;
475 }
476 }