/[projects]/dao/DaoMqPump2/DaoMqGUI/MainForm.Designer.cs
ViewVC logotype

Annotation of /dao/DaoMqPump2/DaoMqGUI/MainForm.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2058 - (hide annotations) (download)
Wed Aug 28 06:45:20 2013 UTC (10 years, 9 months ago) by torben
File size: 25832 byte(s)
Add a support for discarding transactions and writing those to a seperate log + use a counter for keeping track of how many were discarded in current session/instance
1 torben 1986 namespace DaoMqGUI
2     {
3     partial class MainForm
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.components = new System.ComponentModel.Container();
32     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
33     this.stopAll = new System.Windows.Forms.Button();
34     this.startAll = new System.Windows.Forms.Button();
35     this.refreshTimer = new System.Windows.Forms.Timer(this.components);
36     this.tabControl1 = new System.Windows.Forms.TabControl();
37     this.tabPage1 = new System.Windows.Forms.TabPage();
38 torben 2004 this.txtTransferTime = new System.Windows.Forms.TextBox();
39     this.label14 = new System.Windows.Forms.Label();
40 torben 1986 this.txtErrorMsg = new System.Windows.Forms.TextBox();
41     this.label7 = new System.Windows.Forms.Label();
42     this.txtCounter = new System.Windows.Forms.TextBox();
43     this.label6 = new System.Windows.Forms.Label();
44     this.txtErrorTime = new System.Windows.Forms.TextBox();
45     this.label5 = new System.Windows.Forms.Label();
46     this.txtOkTime = new System.Windows.Forms.TextBox();
47     this.label4 = new System.Windows.Forms.Label();
48     this.btnDisableOne = new System.Windows.Forms.Button();
49     this.btnEnableOne = new System.Windows.Forms.Button();
50     this.txtLastOK = new System.Windows.Forms.TextBox();
51     this.label3 = new System.Windows.Forms.Label();
52     this.txtEnabled = new System.Windows.Forms.TextBox();
53     this.label2 = new System.Windows.Forms.Label();
54     this.txtTransport = new System.Windows.Forms.TextBox();
55     this.label1 = new System.Windows.Forms.Label();
56     this.tabPage2 = new System.Windows.Forms.TabPage();
57     this.txtLog = new System.Windows.Forms.TextBox();
58     this.tabPage3 = new System.Windows.Forms.TabPage();
59     this.txtUpdateQuery = new System.Windows.Forms.TextBox();
60     this.label12 = new System.Windows.Forms.Label();
61     this.txtReadQuery = new System.Windows.Forms.TextBox();
62     this.label11 = new System.Windows.Forms.Label();
63     this.txtInsertQuery = new System.Windows.Forms.TextBox();
64     this.label10 = new System.Windows.Forms.Label();
65     this.txtQueueName = new System.Windows.Forms.TextBox();
66     this.label9 = new System.Windows.Forms.Label();
67     this.txtDirection = new System.Windows.Forms.TextBox();
68     this.label8 = new System.Windows.Forms.Label();
69 torben 1992 this.lnkServer = new System.Windows.Forms.LinkLabel();
70     this.label13 = new System.Windows.Forms.Label();
71 torben 2013 this.transports = new System.Windows.Forms.ListView();
72 torben 2058 this.txtDiscarded = new System.Windows.Forms.TextBox();
73     this.label15 = new System.Windows.Forms.Label();
74 torben 1986 this.tabControl1.SuspendLayout();
75     this.tabPage1.SuspendLayout();
76     this.tabPage2.SuspendLayout();
77     this.tabPage3.SuspendLayout();
78     this.SuspendLayout();
79     //
80     // stopAll
81     //
82     this.stopAll.Location = new System.Drawing.Point(95, 379);
83     this.stopAll.Name = "stopAll";
84     this.stopAll.Size = new System.Drawing.Size(75, 23);
85     this.stopAll.TabIndex = 1;
86     this.stopAll.Text = "Disable All";
87     this.stopAll.UseVisualStyleBackColor = true;
88     this.stopAll.Click += new System.EventHandler(this.stopAll_Click);
89     //
90     // startAll
91     //
92     this.startAll.Location = new System.Drawing.Point(13, 379);
93     this.startAll.Name = "startAll";
94     this.startAll.Size = new System.Drawing.Size(75, 23);
95     this.startAll.TabIndex = 2;
96     this.startAll.Text = "Enable All";
97     this.startAll.UseVisualStyleBackColor = true;
98     this.startAll.Click += new System.EventHandler(this.startAll_Click);
99     //
100     // refreshTimer
101     //
102     this.refreshTimer.Enabled = true;
103     this.refreshTimer.Interval = 10000;
104     this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
105     //
106     // tabControl1
107     //
108     this.tabControl1.Controls.Add(this.tabPage1);
109     this.tabControl1.Controls.Add(this.tabPage2);
110     this.tabControl1.Controls.Add(this.tabPage3);
111     this.tabControl1.Location = new System.Drawing.Point(199, 13);
112     this.tabControl1.Name = "tabControl1";
113     this.tabControl1.SelectedIndex = 0;
114     this.tabControl1.Size = new System.Drawing.Size(445, 355);
115     this.tabControl1.TabIndex = 19;
116     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
117     //
118     // tabPage1
119     //
120 torben 2058 this.tabPage1.Controls.Add(this.txtDiscarded);
121     this.tabPage1.Controls.Add(this.label15);
122 torben 2000 this.tabPage1.Controls.Add(this.txtTransferTime);
123     this.tabPage1.Controls.Add(this.label14);
124 torben 1986 this.tabPage1.Controls.Add(this.txtErrorMsg);
125     this.tabPage1.Controls.Add(this.label7);
126     this.tabPage1.Controls.Add(this.txtCounter);
127     this.tabPage1.Controls.Add(this.label6);
128     this.tabPage1.Controls.Add(this.txtErrorTime);
129     this.tabPage1.Controls.Add(this.label5);
130     this.tabPage1.Controls.Add(this.txtOkTime);
131     this.tabPage1.Controls.Add(this.label4);
132     this.tabPage1.Controls.Add(this.btnDisableOne);
133     this.tabPage1.Controls.Add(this.btnEnableOne);
134     this.tabPage1.Controls.Add(this.txtLastOK);
135     this.tabPage1.Controls.Add(this.label3);
136     this.tabPage1.Controls.Add(this.txtEnabled);
137     this.tabPage1.Controls.Add(this.label2);
138     this.tabPage1.Controls.Add(this.txtTransport);
139     this.tabPage1.Controls.Add(this.label1);
140     this.tabPage1.Location = new System.Drawing.Point(4, 22);
141     this.tabPage1.Name = "tabPage1";
142     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
143     this.tabPage1.Size = new System.Drawing.Size(437, 329);
144     this.tabPage1.TabIndex = 0;
145     this.tabPage1.Text = "Status";
146     this.tabPage1.UseVisualStyleBackColor = true;
147     //
148 torben 2004 // txtTransferTime
149     //
150     this.txtTransferTime.Location = new System.Drawing.Point(96, 123);
151     this.txtTransferTime.Name = "txtTransferTime";
152     this.txtTransferTime.ReadOnly = true;
153     this.txtTransferTime.Size = new System.Drawing.Size(130, 20);
154     this.txtTransferTime.TabIndex = 36;
155     //
156     // label14
157     //
158     this.label14.AutoSize = true;
159     this.label14.Location = new System.Drawing.Point(21, 126);
160     this.label14.Name = "label14";
161     this.label14.Size = new System.Drawing.Size(72, 13);
162     this.label14.TabIndex = 35;
163     this.label14.Text = "Transfer Time";
164     //
165 torben 1986 // txtErrorMsg
166     //
167 torben 2000 this.txtErrorMsg.Location = new System.Drawing.Point(96, 175);
168 torben 1986 this.txtErrorMsg.Name = "txtErrorMsg";
169     this.txtErrorMsg.ReadOnly = true;
170     this.txtErrorMsg.Size = new System.Drawing.Size(130, 20);
171     this.txtErrorMsg.TabIndex = 34;
172     //
173     // label7
174     //
175     this.label7.AutoSize = true;
176 torben 2000 this.label7.Location = new System.Drawing.Point(21, 178);
177 torben 1986 this.label7.Name = "label7";
178     this.label7.Size = new System.Drawing.Size(51, 13);
179     this.label7.TabIndex = 33;
180     this.label7.Text = "Error msg";
181     //
182     // txtCounter
183     //
184 torben 2000 this.txtCounter.Location = new System.Drawing.Point(96, 201);
185 torben 1986 this.txtCounter.Name = "txtCounter";
186     this.txtCounter.ReadOnly = true;
187     this.txtCounter.Size = new System.Drawing.Size(130, 20);
188     this.txtCounter.TabIndex = 32;
189     //
190     // label6
191     //
192     this.label6.AutoSize = true;
193 torben 2000 this.label6.Location = new System.Drawing.Point(21, 204);
194 torben 1986 this.label6.Name = "label6";
195     this.label6.Size = new System.Drawing.Size(44, 13);
196     this.label6.TabIndex = 31;
197     this.label6.Text = "Counter";
198     //
199     // txtErrorTime
200     //
201 torben 2000 this.txtErrorTime.Location = new System.Drawing.Point(96, 149);
202 torben 1986 this.txtErrorTime.Name = "txtErrorTime";
203     this.txtErrorTime.ReadOnly = true;
204     this.txtErrorTime.Size = new System.Drawing.Size(130, 20);
205     this.txtErrorTime.TabIndex = 30;
206     //
207     // label5
208     //
209     this.label5.AutoSize = true;
210 torben 2000 this.label5.Location = new System.Drawing.Point(21, 152);
211 torben 1986 this.label5.Name = "label5";
212     this.label5.Size = new System.Drawing.Size(55, 13);
213     this.label5.TabIndex = 29;
214     this.label5.Text = "Error Time";
215     //
216     // txtOkTime
217     //
218 torben 2023 this.txtOkTime.Location = new System.Drawing.Point(96, 98);
219 torben 1986 this.txtOkTime.Name = "txtOkTime";
220     this.txtOkTime.ReadOnly = true;
221     this.txtOkTime.Size = new System.Drawing.Size(130, 20);
222     this.txtOkTime.TabIndex = 28;
223     //
224     // label4
225     //
226     this.label4.AutoSize = true;
227 torben 2023 this.label4.Location = new System.Drawing.Point(21, 101);
228 torben 1986 this.label4.Name = "label4";
229     this.label4.Size = new System.Drawing.Size(48, 13);
230     this.label4.TabIndex = 27;
231     this.label4.Text = "OK Time";
232     //
233     // btnDisableOne
234     //
235     this.btnDisableOne.Enabled = false;
236 torben 2058 this.btnDisableOne.Location = new System.Drawing.Point(106, 258);
237 torben 1986 this.btnDisableOne.Name = "btnDisableOne";
238     this.btnDisableOne.Size = new System.Drawing.Size(75, 23);
239     this.btnDisableOne.TabIndex = 26;
240     this.btnDisableOne.Text = "Disable";
241     this.btnDisableOne.UseVisualStyleBackColor = true;
242     this.btnDisableOne.Click += new System.EventHandler(this.btnDisableOne_Click);
243     //
244     // btnEnableOne
245     //
246     this.btnEnableOne.Enabled = false;
247 torben 2058 this.btnEnableOne.Location = new System.Drawing.Point(24, 258);
248 torben 1986 this.btnEnableOne.Name = "btnEnableOne";
249     this.btnEnableOne.Size = new System.Drawing.Size(75, 23);
250     this.btnEnableOne.TabIndex = 25;
251     this.btnEnableOne.Text = "Enable";
252     this.btnEnableOne.UseVisualStyleBackColor = true;
253     this.btnEnableOne.Click += new System.EventHandler(this.btnEnableOne_Click);
254     //
255     // txtLastOK
256     //
257 torben 2000 this.txtLastOK.Location = new System.Drawing.Point(96, 71);
258 torben 1986 this.txtLastOK.Name = "txtLastOK";
259     this.txtLastOK.ReadOnly = true;
260     this.txtLastOK.Size = new System.Drawing.Size(130, 20);
261     this.txtLastOK.TabIndex = 24;
262     //
263     // label3
264     //
265     this.label3.AutoSize = true;
266     this.label3.Location = new System.Drawing.Point(21, 74);
267     this.label3.Name = "label3";
268     this.label3.Size = new System.Drawing.Size(45, 13);
269     this.label3.TabIndex = 23;
270     this.label3.Text = "Last OK";
271     //
272     // txtEnabled
273     //
274 torben 2000 this.txtEnabled.Location = new System.Drawing.Point(96, 44);
275 torben 1986 this.txtEnabled.Name = "txtEnabled";
276     this.txtEnabled.ReadOnly = true;
277     this.txtEnabled.Size = new System.Drawing.Size(130, 20);
278     this.txtEnabled.TabIndex = 22;
279     //
280     // label2
281     //
282     this.label2.AutoSize = true;
283     this.label2.Location = new System.Drawing.Point(21, 47);
284     this.label2.Name = "label2";
285     this.label2.Size = new System.Drawing.Size(46, 13);
286     this.label2.TabIndex = 21;
287     this.label2.Text = "Enabled";
288     //
289     // txtTransport
290     //
291 torben 2000 this.txtTransport.Location = new System.Drawing.Point(96, 17);
292 torben 1986 this.txtTransport.Name = "txtTransport";
293     this.txtTransport.ReadOnly = true;
294     this.txtTransport.Size = new System.Drawing.Size(130, 20);
295     this.txtTransport.TabIndex = 20;
296     //
297     // label1
298     //
299     this.label1.AutoSize = true;
300     this.label1.Location = new System.Drawing.Point(21, 20);
301     this.label1.Name = "label1";
302     this.label1.Size = new System.Drawing.Size(52, 13);
303     this.label1.TabIndex = 19;
304     this.label1.Text = "Transport";
305     //
306     // tabPage2
307     //
308     this.tabPage2.Controls.Add(this.txtLog);
309     this.tabPage2.Location = new System.Drawing.Point(4, 22);
310     this.tabPage2.Name = "tabPage2";
311     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
312     this.tabPage2.Size = new System.Drawing.Size(437, 329);
313     this.tabPage2.TabIndex = 1;
314     this.tabPage2.Text = "Log";
315     this.tabPage2.UseVisualStyleBackColor = true;
316     //
317     // txtLog
318     //
319     this.txtLog.Location = new System.Drawing.Point(0, 0);
320     this.txtLog.Multiline = true;
321     this.txtLog.Name = "txtLog";
322     this.txtLog.ReadOnly = true;
323 torben 2054 this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
324 torben 1986 this.txtLog.Size = new System.Drawing.Size(436, 328);
325     this.txtLog.TabIndex = 0;
326     //
327     // tabPage3
328     //
329     this.tabPage3.Controls.Add(this.txtUpdateQuery);
330     this.tabPage3.Controls.Add(this.label12);
331     this.tabPage3.Controls.Add(this.txtReadQuery);
332     this.tabPage3.Controls.Add(this.label11);
333     this.tabPage3.Controls.Add(this.txtInsertQuery);
334     this.tabPage3.Controls.Add(this.label10);
335     this.tabPage3.Controls.Add(this.txtQueueName);
336     this.tabPage3.Controls.Add(this.label9);
337     this.tabPage3.Controls.Add(this.txtDirection);
338     this.tabPage3.Controls.Add(this.label8);
339     this.tabPage3.Location = new System.Drawing.Point(4, 22);
340     this.tabPage3.Name = "tabPage3";
341     this.tabPage3.Size = new System.Drawing.Size(437, 329);
342     this.tabPage3.TabIndex = 2;
343     this.tabPage3.Text = "Konfiguration";
344     this.tabPage3.UseVisualStyleBackColor = true;
345     //
346     // txtUpdateQuery
347     //
348 torben 2023 this.txtUpdateQuery.Location = new System.Drawing.Point(96, 125);
349 torben 1986 this.txtUpdateQuery.Name = "txtUpdateQuery";
350     this.txtUpdateQuery.ReadOnly = true;
351     this.txtUpdateQuery.Size = new System.Drawing.Size(130, 20);
352     this.txtUpdateQuery.TabIndex = 30;
353     //
354     // label12
355     //
356     this.label12.AutoSize = true;
357 torben 2023 this.label12.Location = new System.Drawing.Point(21, 128);
358 torben 1986 this.label12.Name = "label12";
359     this.label12.Size = new System.Drawing.Size(70, 13);
360     this.label12.TabIndex = 29;
361     this.label12.Text = "UpdateQuery";
362     //
363     // txtReadQuery
364     //
365 torben 2023 this.txtReadQuery.Location = new System.Drawing.Point(96, 98);
366 torben 1986 this.txtReadQuery.Name = "txtReadQuery";
367     this.txtReadQuery.ReadOnly = true;
368     this.txtReadQuery.Size = new System.Drawing.Size(130, 20);
369     this.txtReadQuery.TabIndex = 28;
370     //
371     // label11
372     //
373     this.label11.AutoSize = true;
374 torben 2023 this.label11.Location = new System.Drawing.Point(21, 101);
375 torben 1986 this.label11.Name = "label11";
376     this.label11.Size = new System.Drawing.Size(61, 13);
377     this.label11.TabIndex = 27;
378     this.label11.Text = "ReadQuery";
379     //
380     // txtInsertQuery
381     //
382 torben 2023 this.txtInsertQuery.Location = new System.Drawing.Point(96, 71);
383 torben 1986 this.txtInsertQuery.Name = "txtInsertQuery";
384     this.txtInsertQuery.ReadOnly = true;
385     this.txtInsertQuery.Size = new System.Drawing.Size(130, 20);
386     this.txtInsertQuery.TabIndex = 26;
387     //
388     // label10
389     //
390     this.label10.AutoSize = true;
391 torben 2023 this.label10.Location = new System.Drawing.Point(21, 74);
392 torben 1986 this.label10.Name = "label10";
393     this.label10.Size = new System.Drawing.Size(61, 13);
394     this.label10.TabIndex = 25;
395     this.label10.Text = "InsertQuery";
396     //
397     // txtQueueName
398     //
399 torben 2023 this.txtQueueName.Location = new System.Drawing.Point(96, 44);
400 torben 1986 this.txtQueueName.Name = "txtQueueName";
401     this.txtQueueName.ReadOnly = true;
402     this.txtQueueName.Size = new System.Drawing.Size(130, 20);
403     this.txtQueueName.TabIndex = 24;
404     //
405     // label9
406     //
407     this.label9.AutoSize = true;
408 torben 2023 this.label9.Location = new System.Drawing.Point(21, 47);
409 torben 1986 this.label9.Name = "label9";
410     this.label9.Size = new System.Drawing.Size(39, 13);
411     this.label9.TabIndex = 23;
412     this.label9.Text = "Queue";
413     //
414     // txtDirection
415     //
416 torben 2023 this.txtDirection.Location = new System.Drawing.Point(96, 17);
417 torben 1986 this.txtDirection.Name = "txtDirection";
418     this.txtDirection.ReadOnly = true;
419     this.txtDirection.Size = new System.Drawing.Size(130, 20);
420     this.txtDirection.TabIndex = 22;
421     //
422     // label8
423     //
424     this.label8.AutoSize = true;
425 torben 2023 this.label8.Location = new System.Drawing.Point(21, 20);
426 torben 1986 this.label8.Name = "label8";
427     this.label8.Size = new System.Drawing.Size(49, 13);
428     this.label8.TabIndex = 21;
429     this.label8.Text = "Direction";
430     //
431 torben 1992 // lnkServer
432     //
433     this.lnkServer.AutoSize = true;
434     this.lnkServer.Location = new System.Drawing.Point(556, 389);
435     this.lnkServer.Name = "lnkServer";
436     this.lnkServer.Size = new System.Drawing.Size(16, 13);
437     this.lnkServer.TabIndex = 20;
438     this.lnkServer.TabStop = true;
439     this.lnkServer.Text = "...";
440     this.lnkServer.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkServer_LinkClicked);
441     //
442     // label13
443     //
444     this.label13.AutoSize = true;
445     this.label13.Location = new System.Drawing.Point(509, 389);
446     this.label13.Name = "label13";
447     this.label13.Size = new System.Drawing.Size(38, 13);
448     this.label13.TabIndex = 21;
449     this.label13.Text = "Server";
450     //
451 torben 2013 // transports
452     //
453     this.transports.Location = new System.Drawing.Point(13, 13);
454     this.transports.Name = "transports";
455     this.transports.Size = new System.Drawing.Size(180, 351);
456     this.transports.TabIndex = 22;
457     this.transports.UseCompatibleStateImageBehavior = false;
458     this.transports.View = System.Windows.Forms.View.List;
459     this.transports.SelectedIndexChanged += new System.EventHandler(this.transports_SelectedIndexChanged);
460     //
461 torben 2058 // txtDiscarded
462     //
463     this.txtDiscarded.Location = new System.Drawing.Point(96, 227);
464     this.txtDiscarded.Name = "txtDiscarded";
465     this.txtDiscarded.ReadOnly = true;
466     this.txtDiscarded.Size = new System.Drawing.Size(130, 20);
467     this.txtDiscarded.TabIndex = 38;
468     //
469     // label15
470     //
471     this.label15.AutoSize = true;
472     this.label15.Location = new System.Drawing.Point(21, 230);
473     this.label15.Name = "label15";
474     this.label15.Size = new System.Drawing.Size(55, 13);
475     this.label15.TabIndex = 37;
476     this.label15.Text = "Discarded";
477     //
478 torben 1986 // MainForm
479     //
480     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
481     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
482     this.ClientSize = new System.Drawing.Size(656, 414);
483 torben 2013 this.Controls.Add(this.transports);
484 torben 1992 this.Controls.Add(this.label13);
485     this.Controls.Add(this.lnkServer);
486 torben 1986 this.Controls.Add(this.tabControl1);
487     this.Controls.Add(this.startAll);
488     this.Controls.Add(this.stopAll);
489 torben 2004 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
490 torben 1986 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
491 torben 2004 this.MaximizeBox = false;
492 torben 1986 this.Name = "MainForm";
493     this.Text = "DAO MQ GUI";
494 torben 1994 this.Shown += new System.EventHandler(this.MainForm_Shown);
495 torben 1986 this.tabControl1.ResumeLayout(false);
496     this.tabPage1.ResumeLayout(false);
497     this.tabPage1.PerformLayout();
498     this.tabPage2.ResumeLayout(false);
499     this.tabPage2.PerformLayout();
500     this.tabPage3.ResumeLayout(false);
501     this.tabPage3.PerformLayout();
502     this.ResumeLayout(false);
503 torben 1992 this.PerformLayout();
504 torben 1986
505     }
506    
507     #endregion
508    
509     private System.Windows.Forms.Button stopAll;
510     private System.Windows.Forms.Button startAll;
511     private System.Windows.Forms.Timer refreshTimer;
512     private System.Windows.Forms.TabControl tabControl1;
513     private System.Windows.Forms.TabPage tabPage1;
514     private System.Windows.Forms.TextBox txtErrorMsg;
515     private System.Windows.Forms.Label label7;
516     private System.Windows.Forms.TextBox txtCounter;
517     private System.Windows.Forms.Label label6;
518     private System.Windows.Forms.TextBox txtErrorTime;
519     private System.Windows.Forms.Label label5;
520     private System.Windows.Forms.TextBox txtOkTime;
521     private System.Windows.Forms.Label label4;
522     private System.Windows.Forms.Button btnDisableOne;
523     private System.Windows.Forms.Button btnEnableOne;
524     private System.Windows.Forms.TextBox txtLastOK;
525     private System.Windows.Forms.Label label3;
526     private System.Windows.Forms.TextBox txtEnabled;
527     private System.Windows.Forms.Label label2;
528     private System.Windows.Forms.TextBox txtTransport;
529     private System.Windows.Forms.Label label1;
530     private System.Windows.Forms.TabPage tabPage2;
531     private System.Windows.Forms.TabPage tabPage3;
532     private System.Windows.Forms.TextBox txtUpdateQuery;
533     private System.Windows.Forms.Label label12;
534     private System.Windows.Forms.TextBox txtReadQuery;
535     private System.Windows.Forms.Label label11;
536     private System.Windows.Forms.TextBox txtInsertQuery;
537     private System.Windows.Forms.Label label10;
538     private System.Windows.Forms.TextBox txtQueueName;
539     private System.Windows.Forms.Label label9;
540     private System.Windows.Forms.TextBox txtDirection;
541     private System.Windows.Forms.Label label8;
542     private System.Windows.Forms.TextBox txtLog;
543 torben 1992 private System.Windows.Forms.LinkLabel lnkServer;
544     private System.Windows.Forms.Label label13;
545 torben 2000 private System.Windows.Forms.TextBox txtTransferTime;
546     private System.Windows.Forms.Label label14;
547 torben 2013 private System.Windows.Forms.ListView transports;
548 torben 2058 private System.Windows.Forms.TextBox txtDiscarded;
549     private System.Windows.Forms.Label label15;
550 torben 1986 }
551     }
552    

  ViewVC Help
Powered by ViewVC 1.1.20