-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
487 lines (480 loc) · 23.7 KB
/
MainForm.Designer.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
namespace snmpd
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing)
{
EthernetBoard_1.Dispose();
EthernetBoard_2.Dispose();
EthernetBoard_3.Dispose();
EthernetBoard_4.Dispose();
EthernetBoard_5.Dispose();
EthernetBoard_6.Dispose();
EthernetBoard_7.Dispose();
if (components != null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.btnDiscover = new System.Windows.Forms.Button();
this.txtOutput = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.chkSpecificIP = new System.Windows.Forms.CheckBox();
this.txtSpecificIP = new System.Windows.Forms.TextBox();
this.btnAllBoards = new System.Windows.Forms.Button();
this.lblOnOff = new System.Windows.Forms.Label();
this.btnRunInLoop = new System.Windows.Forms.Button();
this.btnClearText = new System.Windows.Forms.Button();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mnuFile_ButtonsForm = new System.Windows.Forms.ToolStripMenuItem();
this.btnGetTpl1 = new System.Windows.Forms.Button();
this.btnGet_SmTskLib = new System.Windows.Forms.Button();
this.btnLightsOn = new System.Windows.Forms.Button();
this.btnLightsOff = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.btnGetTpl2 = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.btnSendTrap = new System.Windows.Forms.Button();
this.btnBoardAsTask = new System.Windows.Forms.Button();
this.btnInitTpl = new System.Windows.Forms.Button();
this.btnInitGetSet = new System.Windows.Forms.Button();
this.btnCompareGets = new System.Windows.Forms.Button();
this.btnCancelAllTasks = new System.Windows.Forms.Button();
this.btnDoGetAll = new System.Windows.Forms.Button();
this.cmbIPs = new System.Windows.Forms.ComboBox();
this.cmbOid = new System.Windows.Forms.ComboBox();
this.lblData = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// btnDiscover
//
this.btnDiscover.Location = new System.Drawing.Point(3, 3);
this.btnDiscover.Name = "btnDiscover";
this.btnDiscover.Size = new System.Drawing.Size(100, 23);
this.btnDiscover.TabIndex = 13;
this.btnDiscover.Text = "Discover";
this.btnDiscover.UseVisualStyleBackColor = true;
this.btnDiscover.Click += new System.EventHandler(this.btnDiscover_Click);
//
// txtOutput
//
this.txtOutput.Dock = System.Windows.Forms.DockStyle.Bottom;
this.txtOutput.Location = new System.Drawing.Point(0, 224);
this.txtOutput.Multiline = true;
this.txtOutput.Name = "txtOutput";
this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtOutput.Size = new System.Drawing.Size(644, 229);
this.txtOutput.TabIndex = 14;
//
// label3
//
this.label3.Location = new System.Drawing.Point(1, 27);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(47, 23);
this.label3.TabIndex = 16;
this.label3.Text = "IP Addr";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// chkSpecificIP
//
this.chkSpecificIP.AutoSize = true;
this.chkSpecificIP.Location = new System.Drawing.Point(15, 32);
this.chkSpecificIP.Name = "chkSpecificIP";
this.chkSpecificIP.Size = new System.Drawing.Size(77, 17);
this.chkSpecificIP.TabIndex = 19;
this.chkSpecificIP.Text = "Specific IP";
this.chkSpecificIP.UseVisualStyleBackColor = true;
this.chkSpecificIP.CheckedChanged += new System.EventHandler(this.chkSpecificIP_CheckedChanged);
//
// txtSpecificIP
//
this.txtSpecificIP.Location = new System.Drawing.Point(3, 55);
this.txtSpecificIP.Name = "txtSpecificIP";
this.txtSpecificIP.Size = new System.Drawing.Size(100, 20);
this.txtSpecificIP.TabIndex = 20;
this.txtSpecificIP.Visible = false;
//
// btnAllBoards
//
this.btnAllBoards.BackColor = System.Drawing.Color.PaleGreen;
this.btnAllBoards.Location = new System.Drawing.Point(12, 54);
this.btnAllBoards.Name = "btnAllBoards";
this.btnAllBoards.Size = new System.Drawing.Size(93, 23);
this.btnAllBoards.TabIndex = 22;
this.btnAllBoards.Text = "Load Boards";
this.btnAllBoards.UseVisualStyleBackColor = false;
this.btnAllBoards.Click += new System.EventHandler(this.btnLoad_Click);
//
// lblOnOff
//
this.lblOnOff.BackColor = System.Drawing.Color.Red;
this.lblOnOff.Location = new System.Drawing.Point(12, 141);
this.lblOnOff.Name = "lblOnOff";
this.lblOnOff.Size = new System.Drawing.Size(23, 18);
this.lblOnOff.TabIndex = 24;
this.lblOnOff.Text = "Off";
this.lblOnOff.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnRunInLoop
//
this.btnRunInLoop.Location = new System.Drawing.Point(519, 122);
this.btnRunInLoop.Name = "btnRunInLoop";
this.btnRunInLoop.Size = new System.Drawing.Size(111, 23);
this.btnRunInLoop.TabIndex = 35;
this.btnRunInLoop.Text = "Use Loop no timer";
this.btnRunInLoop.UseVisualStyleBackColor = true;
this.btnRunInLoop.Click += new System.EventHandler(this.btnRunInLoop_Click);
//
// btnClearText
//
this.btnClearText.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClearText.Location = new System.Drawing.Point(605, 191);
this.btnClearText.Name = "btnClearText";
this.btnClearText.Size = new System.Drawing.Size(39, 27);
this.btnClearText.TabIndex = 36;
this.btnClearText.Text = "...";
this.btnClearText.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.btnClearText.UseVisualStyleBackColor = true;
this.btnClearText.Click += new System.EventHandler(this.btnClearText_Click);
//
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(644, 21);
this.menuStrip1.TabIndex = 37;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mnuFile_ButtonsForm});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 17);
this.fileToolStripMenuItem.Text = "File";
//
// mnuFile_ButtonsForm
//
this.mnuFile_ButtonsForm.Name = "mnuFile_ButtonsForm";
this.mnuFile_ButtonsForm.Size = new System.Drawing.Size(138, 22);
this.mnuFile_ButtonsForm.Text = "Buttons Form";
this.mnuFile_ButtonsForm.Click += new System.EventHandler(this.mnuFile_ButtonsForm_Click);
//
// btnGetTpl1
//
this.btnGetTpl1.BackColor = System.Drawing.Color.PaleGreen;
this.btnGetTpl1.Location = new System.Drawing.Point(113, 82);
this.btnGetTpl1.Name = "btnGetTpl1";
this.btnGetTpl1.Size = new System.Drawing.Size(116, 23);
this.btnGetTpl1.TabIndex = 38;
this.btnGetTpl1.Text = "TPL Get/Set Async";
this.toolTip1.SetToolTip(this.btnGetTpl1, "Get and then Set channels values using the TPL (Async)");
this.btnGetTpl1.UseVisualStyleBackColor = false;
//
// btnGet_SmTskLib
//
this.btnGet_SmTskLib.Location = new System.Drawing.Point(519, 151);
this.btnGet_SmTskLib.Name = "btnGet_SmTskLib";
this.btnGet_SmTskLib.Size = new System.Drawing.Size(110, 23);
this.btnGet_SmTskLib.TabIndex = 39;
this.btnGet_SmTskLib.Text = "Get SmTskLib";
this.btnGet_SmTskLib.UseVisualStyleBackColor = true;
//
// btnLightsOn
//
this.btnLightsOn.BackColor = System.Drawing.Color.PaleGreen;
this.btnLightsOn.Location = new System.Drawing.Point(12, 82);
this.btnLightsOn.Name = "btnLightsOn";
this.btnLightsOn.Size = new System.Drawing.Size(93, 23);
this.btnLightsOn.TabIndex = 40;
this.btnLightsOn.Text = "All On";
this.btnLightsOn.UseVisualStyleBackColor = false;
this.btnLightsOn.Click += new System.EventHandler(this.btnLightsOn_Click);
//
// btnLightsOff
//
this.btnLightsOff.BackColor = System.Drawing.Color.PaleGreen;
this.btnLightsOff.Location = new System.Drawing.Point(12, 111);
this.btnLightsOff.Name = "btnLightsOff";
this.btnLightsOff.Size = new System.Drawing.Size(93, 23);
this.btnLightsOff.TabIndex = 41;
this.btnLightsOff.Text = "All Off";
this.btnLightsOff.UseVisualStyleBackColor = false;
this.btnLightsOff.Click += new System.EventHandler(this.btnLightsOff_Async_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(181, 29);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 23);
this.label1.TabIndex = 44;
this.label1.Text = "OID";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// toolTip1
//
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTip1.ToolTipTitle = "ToolTip beotch";
//
// btnGetTpl2
//
this.btnGetTpl2.BackColor = System.Drawing.Color.PaleGreen;
this.btnGetTpl2.Location = new System.Drawing.Point(113, 111);
this.btnGetTpl2.Name = "btnGetTpl2";
this.btnGetTpl2.Size = new System.Drawing.Size(116, 23);
this.btnGetTpl2.TabIndex = 50;
this.btnGetTpl2.Text = "TPL Get/Set NonAsync";
this.toolTip1.SetToolTip(this.btnGetTpl2, "Get and then Set channels values using the TPL (Non Async)");
this.btnGetTpl2.UseVisualStyleBackColor = false;
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.txtSpecificIP);
this.panel1.Controls.Add(this.chkSpecificIP);
this.panel1.Controls.Add(this.btnDiscover);
this.panel1.Location = new System.Drawing.Point(521, 27);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(109, 89);
this.panel1.TabIndex = 55;
this.toolTip1.SetToolTip(this.panel1, "Discover all network devices that respond to an SNMP pings");
//
// btnSendTrap
//
this.btnSendTrap.BackColor = System.Drawing.Color.PaleGreen;
this.btnSendTrap.Location = new System.Drawing.Point(113, 54);
this.btnSendTrap.Name = "btnSendTrap";
this.btnSendTrap.Size = new System.Drawing.Size(116, 23);
this.btnSendTrap.TabIndex = 58;
this.btnSendTrap.Text = "Send Trap";
this.toolTip1.SetToolTip(this.btnSendTrap, "Send a Trap to specified Agent.");
this.btnSendTrap.UseVisualStyleBackColor = false;
this.btnSendTrap.Click += new System.EventHandler(this.btnSendTrap_Click);
//
// btnBoardAsTask
//
this.btnBoardAsTask.BackColor = System.Drawing.Color.PaleGreen;
this.btnBoardAsTask.Location = new System.Drawing.Point(136, 141);
this.btnBoardAsTask.Name = "btnBoardAsTask";
this.btnBoardAsTask.Size = new System.Drawing.Size(93, 23);
this.btnBoardAsTask.TabIndex = 49;
this.btnBoardAsTask.Text = "Board as Task";
this.btnBoardAsTask.UseVisualStyleBackColor = false;
this.btnBoardAsTask.Click += new System.EventHandler(this.btnBoardAsTask_Click);
//
// btnInitTpl
//
this.btnInitTpl.BackColor = System.Drawing.Color.PaleGreen;
this.btnInitTpl.Location = new System.Drawing.Point(237, 54);
this.btnInitTpl.Name = "btnInitTpl";
this.btnInitTpl.Size = new System.Drawing.Size(93, 23);
this.btnInitTpl.TabIndex = 51;
this.btnInitTpl.Text = "Get Init - TPL";
this.btnInitTpl.UseVisualStyleBackColor = false;
this.btnInitTpl.Click += new System.EventHandler(this.btnInitTpl_Click);
//
// btnInitGetSet
//
this.btnInitGetSet.BackColor = System.Drawing.Color.PaleGreen;
this.btnInitGetSet.Location = new System.Drawing.Point(237, 83);
this.btnInitGetSet.Name = "btnInitGetSet";
this.btnInitGetSet.Size = new System.Drawing.Size(93, 23);
this.btnInitGetSet.TabIndex = 52;
this.btnInitGetSet.Text = "Init Get/Set";
this.btnInitGetSet.UseVisualStyleBackColor = false;
this.btnInitGetSet.Click += new System.EventHandler(this.btnInitGetSet_Click);
//
// btnCompareGets
//
this.btnCompareGets.BackColor = System.Drawing.Color.PaleGreen;
this.btnCompareGets.Location = new System.Drawing.Point(237, 112);
this.btnCompareGets.Name = "btnCompareGets";
this.btnCompareGets.Size = new System.Drawing.Size(93, 23);
this.btnCompareGets.TabIndex = 53;
this.btnCompareGets.Text = "Compare Gets";
this.btnCompareGets.UseVisualStyleBackColor = false;
this.btnCompareGets.Click += new System.EventHandler(this.btnCompareGets_Click);
//
// btnCancelAllTasks
//
this.btnCancelAllTasks.BackColor = System.Drawing.Color.PaleGreen;
this.btnCancelAllTasks.Location = new System.Drawing.Point(336, 54);
this.btnCancelAllTasks.Name = "btnCancelAllTasks";
this.btnCancelAllTasks.Size = new System.Drawing.Size(136, 23);
this.btnCancelAllTasks.TabIndex = 54;
this.btnCancelAllTasks.Text = "Cancel All Tasks";
this.btnCancelAllTasks.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.btnCancelAllTasks.UseVisualStyleBackColor = false;
this.btnCancelAllTasks.Click += new System.EventHandler(this.btnCancelAllTasks_Click);
//
// btnDoGetAll
//
this.btnDoGetAll.BackColor = System.Drawing.Color.PaleGreen;
this.btnDoGetAll.Location = new System.Drawing.Point(237, 138);
this.btnDoGetAll.Name = "btnDoGetAll";
this.btnDoGetAll.Size = new System.Drawing.Size(93, 23);
this.btnDoGetAll.TabIndex = 56;
this.btnDoGetAll.Text = "Do GetAll";
this.btnDoGetAll.UseVisualStyleBackColor = false;
this.btnDoGetAll.Click += new System.EventHandler(this.btnDoGetAll_Click);
//
// cmbIPs
//
this.cmbIPs.FormattingEnabled = true;
this.cmbIPs.Items.AddRange(new object[] {
"192.168.1.40",
"192.168.1.41",
"192.168.1.42",
"192.168.1.43",
"192.168.1.44",
"192.168.1.45",
"192.168.1.46",
"192.168.1.47"});
this.cmbIPs.Location = new System.Drawing.Point(54, 29);
this.cmbIPs.Name = "cmbIPs";
this.cmbIPs.Size = new System.Drawing.Size(121, 21);
this.cmbIPs.TabIndex = 59;
//
// cmbOid
//
this.cmbOid.FormattingEnabled = true;
this.cmbOid.Items.AddRange(new object[] {
".1.3.6.1.4.1.19865.1.2.1.1.0",
".1.3.6.1.4.1.19865.1.2.1.2.0",
".1.3.6.1.4.1.19865.1.2.1.3.0",
".1.3.6.1.4.1.19865.1.2.1.4.0",
".1.3.6.1.4.1.19865.1.2.1.5.0",
".1.3.6.1.4.1.19865.1.2.1.6.0",
".1.3.6.1.4.1.19865.1.2.1.7.0",
".1.3.6.1.4.1.19865.1.2.1.8.0",
".1.3.6.1.4.1.19865.1.2.1.33.0",
".1.3.6.1.4.1.19865.1.2.2.1.0",
".1.3.6.1.4.1.19865.1.2.2.2.0",
".1.3.6.1.4.1.19865.1.2.2.3.0",
".1.3.6.1.4.1.19865.1.2.2.4.0",
".1.3.6.1.4.1.19865.1.2.2.5.0",
".1.3.6.1.4.1.19865.1.2.2.6.0",
".1.3.6.1.4.1.19865.1.2.2.7.0",
".1.3.6.1.4.1.19865.1.2.2.8.0",
".1.3.6.1.4.1.19865.1.2.2.33.0",
".1.3.6.1.4.1.19865.1.2.3.1.0",
".1.3.6.1.4.1.19865.1.2.3.2.0",
".1.3.6.1.4.1.19865.1.2.3.3.0",
".1.3.6.1.4.1.19865.1.2.3.4.0"});
this.cmbOid.Location = new System.Drawing.Point(218, 27);
this.cmbOid.Name = "cmbOid";
this.cmbOid.Size = new System.Drawing.Size(242, 21);
this.cmbOid.TabIndex = 60;
//
// lblData
//
this.lblData.BackColor = System.Drawing.Color.MediumAquamarine;
this.lblData.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblData.Location = new System.Drawing.Point(358, 111);
this.lblData.Name = "lblData";
this.lblData.Size = new System.Drawing.Size(102, 74);
this.lblData.TabIndex = 61;
this.lblData.Text = "Nothing :-(";
this.lblData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(644, 453);
this.Controls.Add(this.lblData);
this.Controls.Add(this.cmbOid);
this.Controls.Add(this.cmbIPs);
this.Controls.Add(this.btnSendTrap);
this.Controls.Add(this.btnDoGetAll);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnCancelAllTasks);
this.Controls.Add(this.btnCompareGets);
this.Controls.Add(this.btnInitGetSet);
this.Controls.Add(this.btnInitTpl);
this.Controls.Add(this.btnGetTpl2);
this.Controls.Add(this.btnBoardAsTask);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnLightsOff);
this.Controls.Add(this.btnLightsOn);
this.Controls.Add(this.btnGet_SmTskLib);
this.Controls.Add(this.btnGetTpl1);
this.Controls.Add(this.btnClearText);
this.Controls.Add(this.btnRunInLoop);
this.Controls.Add(this.lblOnOff);
this.Controls.Add(this.btnAllBoards);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtOutput);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.Text = "Ricks SNMP Agent";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Button btnDiscover;
private System.Windows.Forms.TextBox txtOutput;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtSpecificIP;
private System.Windows.Forms.CheckBox chkSpecificIP;
private System.Windows.Forms.Button btnAllBoards;
private System.Windows.Forms.Label lblOnOff;
private System.Windows.Forms.Button btnRunInLoop;
private System.Windows.Forms.Button btnClearText;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem mnuFile_ButtonsForm;
private System.Windows.Forms.Button btnGetTpl1;
private System.Windows.Forms.Button btnGet_SmTskLib;
private System.Windows.Forms.Button btnLightsOn;
private System.Windows.Forms.Button btnLightsOff;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Button btnBoardAsTask;
private System.Windows.Forms.Button btnGetTpl2;
private System.Windows.Forms.Button btnInitTpl;
private System.Windows.Forms.Button btnInitGetSet;
private System.Windows.Forms.Button btnCompareGets;
private System.Windows.Forms.Button btnCancelAllTasks;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btnDoGetAll;
private System.Windows.Forms.Button btnSendTrap;
private System.Windows.Forms.ComboBox cmbIPs;
private System.Windows.Forms.ComboBox cmbOid;
private System.Windows.Forms.Label lblData;
}
}