Free cookie consent management tool by TermsFeed Policy Generator

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

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

JobDetails and Images for job fixed (#600)

File size: 8.5 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.ServerConsole {
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.gbConfiguration = new System.Windows.Forms.GroupBox();
48      this.lblPort = new System.Windows.Forms.Label();
49      this.lblIp = new System.Windows.Forms.Label();
50      this.tbPort = new System.Windows.Forms.TextBox();
51      this.tbIp = new System.Windows.Forms.TextBox();
52      this.btnLogin = new System.Windows.Forms.Button();
53      this.gpUser = new System.Windows.Forms.GroupBox();
54      this.tbUserName = new System.Windows.Forms.TextBox();
55      this.lblPwd = new System.Windows.Forms.Label();
56      this.lblUsername = new System.Windows.Forms.Label();
57      this.tbPwd = new System.Windows.Forms.TextBox();
58      this.lblError = new System.Windows.Forms.Label();
59      this.gbConfiguration.SuspendLayout();
60      this.gpUser.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // gbConfiguration
64      //
65      this.gbConfiguration.Controls.Add(this.lblPort);
66      this.gbConfiguration.Controls.Add(this.lblIp);
67      this.gbConfiguration.Controls.Add(this.tbPort);
68      this.gbConfiguration.Controls.Add(this.tbIp);
69      this.gbConfiguration.Location = new System.Drawing.Point(12, 100);
70      this.gbConfiguration.Name = "gbConfiguration";
71      this.gbConfiguration.Size = new System.Drawing.Size(283, 82);
72      this.gbConfiguration.TabIndex = 4;
73      this.gbConfiguration.TabStop = false;
74      this.gbConfiguration.Text = "Configuration";
75      //
76      // lblPort
77      //
78      this.lblPort.AutoSize = true;
79      this.lblPort.Location = new System.Drawing.Point(16, 54);
80      this.lblPort.Name = "lblPort";
81      this.lblPort.Size = new System.Drawing.Size(26, 13);
82      this.lblPort.TabIndex = 3;
83      this.lblPort.Text = "Port";
84      //
85      // lblIp
86      //
87      this.lblIp.AutoSize = true;
88      this.lblIp.Location = new System.Drawing.Point(16, 26);
89      this.lblIp.Name = "lblIp";
90      this.lblIp.Size = new System.Drawing.Size(17, 13);
91      this.lblIp.TabIndex = 2;
92      this.lblIp.Text = "IP";
93      //
94      // tbPort
95      //
96      this.tbPort.Location = new System.Drawing.Point(77, 47);
97      this.tbPort.Name = "tbPort";
98      this.tbPort.Size = new System.Drawing.Size(189, 20);
99      this.tbPort.TabIndex = 6;
100      this.tbPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
101      //
102      // tbIp
103      //
104      this.tbIp.Location = new System.Drawing.Point(77, 19);
105      this.tbIp.Name = "tbIp";
106      this.tbIp.Size = new System.Drawing.Size(191, 20);
107      this.tbIp.TabIndex = 5;
108      this.tbIp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
109      //
110      // btnLogin
111      //
112      this.btnLogin.Location = new System.Drawing.Point(179, 188);
113      this.btnLogin.Name = "btnLogin";
114      this.btnLogin.Size = new System.Drawing.Size(116, 23);
115      this.btnLogin.TabIndex = 7;
116      this.btnLogin.Text = "Login";
117      this.btnLogin.UseVisualStyleBackColor = true;
118      this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
119      this.btnLogin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
120      //
121      // gpUser
122      //
123      this.gpUser.Controls.Add(this.tbUserName);
124      this.gpUser.Controls.Add(this.lblPwd);
125      this.gpUser.Controls.Add(this.lblUsername);
126      this.gpUser.Controls.Add(this.tbPwd);
127      this.gpUser.Location = new System.Drawing.Point(12, 12);
128      this.gpUser.Name = "gpUser";
129      this.gpUser.Size = new System.Drawing.Size(283, 82);
130      this.gpUser.TabIndex = 1;
131      this.gpUser.TabStop = false;
132      this.gpUser.Text = "User";
133      //
134      // tbUserName
135      //
136      this.tbUserName.Location = new System.Drawing.Point(77, 19);
137      this.tbUserName.Name = "tbUserName";
138      this.tbUserName.Size = new System.Drawing.Size(189, 20);
139      this.tbUserName.TabIndex = 2;
140      this.tbUserName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
141      //
142      // lblPwd
143      //
144      this.lblPwd.AutoSize = true;
145      this.lblPwd.Location = new System.Drawing.Point(16, 54);
146      this.lblPwd.Name = "lblPwd";
147      this.lblPwd.Size = new System.Drawing.Size(53, 13);
148      this.lblPwd.TabIndex = 3;
149      this.lblPwd.Text = "Password";
150      //
151      // lblUsername
152      //
153      this.lblUsername.AutoSize = true;
154      this.lblUsername.Location = new System.Drawing.Point(16, 26);
155      this.lblUsername.Name = "lblUsername";
156      this.lblUsername.Size = new System.Drawing.Size(55, 13);
157      this.lblUsername.TabIndex = 2;
158      this.lblUsername.Text = "Username";
159      //
160      // tbPwd
161      //
162      this.tbPwd.Location = new System.Drawing.Point(77, 47);
163      this.tbPwd.Name = "tbPwd";
164      this.tbPwd.Size = new System.Drawing.Size(189, 20);
165      this.tbPwd.TabIndex = 3;
166      this.tbPwd.UseSystemPasswordChar = true;
167      this.tbPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
168      //
169      // lblError
170      //
171      this.lblError.AutoSize = true;
172      this.lblError.ForeColor = System.Drawing.Color.Red;
173      this.lblError.Location = new System.Drawing.Point(16, 238);
174      this.lblError.Name = "lblError";
175      this.lblError.Size = new System.Drawing.Size(0, 13);
176      this.lblError.TabIndex = 5;
177      //
178      // HiveServerConsole
179      //
180      this.AcceptButton = this.btnLogin;
181      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
182      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
183      this.ClientSize = new System.Drawing.Size(311, 225);
184      this.Controls.Add(this.lblError);
185      this.Controls.Add(this.gpUser);
186      this.Controls.Add(this.btnLogin);
187      this.Controls.Add(this.gbConfiguration);
188      this.Name = "HiveServerConsole";
189      this.Text = "Server Console";
190      this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
191      this.gbConfiguration.ResumeLayout(false);
192      this.gbConfiguration.PerformLayout();
193      this.gpUser.ResumeLayout(false);
194      this.gpUser.PerformLayout();
195      this.ResumeLayout(false);
196      this.PerformLayout();
197
198    }
199
200    #endregion
201
202    private System.Windows.Forms.GroupBox gbConfiguration;
203    private System.Windows.Forms.Label lblPort;
204    private System.Windows.Forms.Label lblIp;
205    private System.Windows.Forms.TextBox tbPort;
206    private System.Windows.Forms.TextBox tbIp;
207    private System.Windows.Forms.Button btnLogin;
208    private System.Windows.Forms.GroupBox gpUser;
209    private System.Windows.Forms.TextBox tbUserName;
210    private System.Windows.Forms.Label lblPwd;
211    private System.Windows.Forms.Label lblUsername;
212    private System.Windows.Forms.TextBox tbPwd;
213    private System.Windows.Forms.Label lblError;
214  }
215}
216
Note: See TracBrowser for help on using the repository browser.