Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.Designer.cs @ 912

Last change on this file since 912 was 912, checked in by aleitner, 15 years ago

Handled exeption if server not online (#380)

File size: 9.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Hive.Server.Console {
23  partial class HiveServerConsole {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.msServerConsole = new System.Windows.Forms.MenuStrip();
48      this.tsmiConsole = new System.Windows.Forms.ToolStripMenuItem();
49      this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
50      this.gbManager = new System.Windows.Forms.GroupBox();
51      this.lblPort = new System.Windows.Forms.Label();
52      this.lblIp = new System.Windows.Forms.Label();
53      this.tbPort = new System.Windows.Forms.TextBox();
54      this.btnLogin = new System.Windows.Forms.Button();
55      this.groupBox1 = new System.Windows.Forms.GroupBox();
56      this.lblPwd = new System.Windows.Forms.Label();
57      this.lblUsername = new System.Windows.Forms.Label();
58      this.tbPwd = new System.Windows.Forms.TextBox();
59      this.tbUserName = new System.Windows.Forms.TextBox();
60      this.lblError = new System.Windows.Forms.Label();
61      this.tbIp = new HeuristicLab.Hive.Server.Console.IPAddressTextBox();
62      this.msServerConsole.SuspendLayout();
63      this.gbManager.SuspendLayout();
64      this.groupBox1.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // msServerConsole
68      //
69      this.msServerConsole.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
70            this.tsmiConsole});
71      this.msServerConsole.Location = new System.Drawing.Point(0, 0);
72      this.msServerConsole.Name = "msServerConsole";
73      this.msServerConsole.Size = new System.Drawing.Size(311, 24);
74      this.msServerConsole.TabIndex = 0;
75      this.msServerConsole.Text = "menuStrip1";
76      //
77      // tsmiConsole
78      //
79      this.tsmiConsole.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
80            this.tsmiExit});
81      this.tsmiConsole.Name = "tsmiConsole";
82      this.tsmiConsole.Size = new System.Drawing.Size(87, 20);
83      this.tsmiConsole.Text = "Serverconsole";
84      //
85      // tsmiExit
86      //
87      this.tsmiExit.Name = "tsmiExit";
88      this.tsmiExit.Size = new System.Drawing.Size(103, 22);
89      this.tsmiExit.Text = "Exit";
90      this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
91      //
92      // gbManager
93      //
94      this.gbManager.Controls.Add(this.lblPort);
95      this.gbManager.Controls.Add(this.lblIp);
96      this.gbManager.Controls.Add(this.tbPort);
97      this.gbManager.Controls.Add(this.tbIp);
98      this.gbManager.Location = new System.Drawing.Point(16, 124);
99      this.gbManager.Name = "gbManager";
100      this.gbManager.Size = new System.Drawing.Size(283, 82);
101      this.gbManager.TabIndex = 1;
102      this.gbManager.TabStop = false;
103      this.gbManager.Text = "Manager";
104      //
105      // lblPort
106      //
107      this.lblPort.AutoSize = true;
108      this.lblPort.Location = new System.Drawing.Point(16, 54);
109      this.lblPort.Name = "lblPort";
110      this.lblPort.Size = new System.Drawing.Size(26, 13);
111      this.lblPort.TabIndex = 3;
112      this.lblPort.Text = "Port";
113      //
114      // lblIp
115      //
116      this.lblIp.AutoSize = true;
117      this.lblIp.Location = new System.Drawing.Point(16, 26);
118      this.lblIp.Name = "lblIp";
119      this.lblIp.Size = new System.Drawing.Size(17, 13);
120      this.lblIp.TabIndex = 2;
121      this.lblIp.Text = "IP";
122      //
123      // tbPort
124      //
125      this.tbPort.Location = new System.Drawing.Point(77, 47);
126      this.tbPort.Name = "tbPort";
127      this.tbPort.Size = new System.Drawing.Size(189, 20);
128      this.tbPort.TabIndex = 1;
129      //
130      // btnLogin
131      //
132      this.btnLogin.Location = new System.Drawing.Point(183, 212);
133      this.btnLogin.Name = "btnLogin";
134      this.btnLogin.Size = new System.Drawing.Size(116, 23);
135      this.btnLogin.TabIndex = 2;
136      this.btnLogin.Text = "Login";
137      this.btnLogin.UseVisualStyleBackColor = true;
138      this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
139      //
140      // groupBox1
141      //
142      this.groupBox1.Controls.Add(this.tbUserName);
143      this.groupBox1.Controls.Add(this.lblPwd);
144      this.groupBox1.Controls.Add(this.lblUsername);
145      this.groupBox1.Controls.Add(this.tbPwd);
146      this.groupBox1.Location = new System.Drawing.Point(16, 36);
147      this.groupBox1.Name = "groupBox1";
148      this.groupBox1.Size = new System.Drawing.Size(283, 82);
149      this.groupBox1.TabIndex = 4;
150      this.groupBox1.TabStop = false;
151      this.groupBox1.Text = "Manager";
152      //
153      // lblPwd
154      //
155      this.lblPwd.AutoSize = true;
156      this.lblPwd.Location = new System.Drawing.Point(16, 54);
157      this.lblPwd.Name = "lblPwd";
158      this.lblPwd.Size = new System.Drawing.Size(53, 13);
159      this.lblPwd.TabIndex = 3;
160      this.lblPwd.Text = "Password";
161      //
162      // lblUsername
163      //
164      this.lblUsername.AutoSize = true;
165      this.lblUsername.Location = new System.Drawing.Point(16, 26);
166      this.lblUsername.Name = "lblUsername";
167      this.lblUsername.Size = new System.Drawing.Size(55, 13);
168      this.lblUsername.TabIndex = 2;
169      this.lblUsername.Text = "Username";
170      //
171      // tbPwd
172      //
173      this.tbPwd.Location = new System.Drawing.Point(77, 47);
174      this.tbPwd.Name = "tbPwd";
175      this.tbPwd.Size = new System.Drawing.Size(189, 20);
176      this.tbPwd.TabIndex = 1;
177      //
178      // tbUserName
179      //
180      this.tbUserName.Location = new System.Drawing.Point(77, 19);
181      this.tbUserName.Name = "tbUserName";
182      this.tbUserName.Size = new System.Drawing.Size(189, 20);
183      this.tbUserName.TabIndex = 4;
184      //
185      // lblError
186      //
187      this.lblError.AutoSize = true;
188      this.lblError.ForeColor = System.Drawing.Color.Red;
189      this.lblError.Location = new System.Drawing.Point(16, 238);
190      this.lblError.Name = "lblError";
191      this.lblError.Size = new System.Drawing.Size(0, 13);
192      this.lblError.TabIndex = 5;
193      //
194      // tbIp
195      //
196      this.tbIp.Location = new System.Drawing.Point(77, 19);
197      this.tbIp.Name = "tbIp";
198      this.tbIp.Size = new System.Drawing.Size(191, 20);
199      this.tbIp.TabIndex = 0;
200      //
201      // HiveServerConsole
202      //
203      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
204      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
205      this.ClientSize = new System.Drawing.Size(311, 263);
206      this.Controls.Add(this.lblError);
207      this.Controls.Add(this.groupBox1);
208      this.Controls.Add(this.btnLogin);
209      this.Controls.Add(this.gbManager);
210      this.Controls.Add(this.msServerConsole);
211      this.MainMenuStrip = this.msServerConsole;
212      this.Name = "HiveServerConsole";
213      this.Text = "Server Console";
214      this.msServerConsole.ResumeLayout(false);
215      this.msServerConsole.PerformLayout();
216      this.gbManager.ResumeLayout(false);
217      this.gbManager.PerformLayout();
218      this.groupBox1.ResumeLayout(false);
219      this.groupBox1.PerformLayout();
220      this.ResumeLayout(false);
221      this.PerformLayout();
222
223    }
224
225    #endregion
226
227    private System.Windows.Forms.MenuStrip msServerConsole;
228    private System.Windows.Forms.ToolStripMenuItem tsmiConsole;
229    private System.Windows.Forms.ToolStripMenuItem tsmiExit;
230    private System.Windows.Forms.GroupBox gbManager;
231    private System.Windows.Forms.Label lblPort;
232    private System.Windows.Forms.Label lblIp;
233    private System.Windows.Forms.TextBox tbPort;
234    private IPAddressTextBox tbIp;
235    private System.Windows.Forms.Button btnLogin;
236    private System.Windows.Forms.GroupBox groupBox1;
237    private System.Windows.Forms.TextBox tbUserName;
238    private System.Windows.Forms.Label lblPwd;
239    private System.Windows.Forms.Label lblUsername;
240    private System.Windows.Forms.TextBox tbPwd;
241    private System.Windows.Forms.Label lblError;
242  }
243}
244
Note: See TracBrowser for help on using the repository browser.