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

  ViewVC Help
Powered by ViewVC 1.1.20