Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/HiveServerConsole.Designer.cs @ 4425

Last change on this file since 4425 was 4425, checked in by cneumuel, 14 years ago
  • removed port setting from HiveServerConsole (port is configured in config file)
  • updated Files.txt
File size: 9.4 KB
RevLine 
[778]1#region License Information
2/* HeuristicLab
[4424]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[778]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
[1089]22namespace HeuristicLab.Hive.Server.ServerConsole {
[778]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() {
[2065]47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveServerConsole));
[1483]48      this.gbConfiguration = new System.Windows.Forms.GroupBox();
[778]49      this.lblIp = new System.Windows.Forms.Label();
[1037]50      this.tbIp = new System.Windows.Forms.TextBox();
[912]51      this.btnLogin = new System.Windows.Forms.Button();
[1483]52      this.gpUser = new System.Windows.Forms.GroupBox();
[956]53      this.tbUserName = new System.Windows.Forms.TextBox();
[912]54      this.lblPwd = new System.Windows.Forms.Label();
55      this.lblUsername = new System.Windows.Forms.Label();
56      this.tbPwd = new System.Windows.Forms.TextBox();
57      this.lblError = new System.Windows.Forms.Label();
[2065]58      this.pictureBox1 = new System.Windows.Forms.PictureBox();
59      this.btnCancel = new System.Windows.Forms.Button();
[1483]60      this.gbConfiguration.SuspendLayout();
61      this.gpUser.SuspendLayout();
[2065]62      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
[778]63      this.SuspendLayout();
64      //
[1483]65      // gbConfiguration
[778]66      //
[1483]67      this.gbConfiguration.Controls.Add(this.lblIp);
68      this.gbConfiguration.Controls.Add(this.tbIp);
[2065]69      this.gbConfiguration.Location = new System.Drawing.Point(188, 100);
[1483]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";
[778]75      //
76      // lblIp
77      //
78      this.lblIp.AutoSize = true;
79      this.lblIp.Location = new System.Drawing.Point(16, 26);
80      this.lblIp.Name = "lblIp";
81      this.lblIp.Size = new System.Drawing.Size(17, 13);
82      this.lblIp.TabIndex = 2;
83      this.lblIp.Text = "IP";
84      //
[1037]85      // tbIp
86      //
87      this.tbIp.Location = new System.Drawing.Point(77, 19);
88      this.tbIp.Name = "tbIp";
89      this.tbIp.Size = new System.Drawing.Size(191, 20);
90      this.tbIp.TabIndex = 5;
[1164]91      this.tbIp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1037]92      //
[778]93      // btnLogin
94      //
[2065]95      this.btnLogin.Location = new System.Drawing.Point(355, 193);
[778]96      this.btnLogin.Name = "btnLogin";
97      this.btnLogin.Size = new System.Drawing.Size(116, 23);
[1037]98      this.btnLogin.TabIndex = 7;
[778]99      this.btnLogin.Text = "Login";
100      this.btnLogin.UseVisualStyleBackColor = true;
[1037]101      this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
[1164]102      this.btnLogin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[778]103      //
[1483]104      // gpUser
[912]105      //
[1483]106      this.gpUser.Controls.Add(this.tbUserName);
107      this.gpUser.Controls.Add(this.lblPwd);
108      this.gpUser.Controls.Add(this.lblUsername);
109      this.gpUser.Controls.Add(this.tbPwd);
[2065]110      this.gpUser.Location = new System.Drawing.Point(188, 12);
[1483]111      this.gpUser.Name = "gpUser";
112      this.gpUser.Size = new System.Drawing.Size(283, 82);
113      this.gpUser.TabIndex = 1;
114      this.gpUser.TabStop = false;
115      this.gpUser.Text = "User";
[912]116      //
[956]117      // tbUserName
118      //
119      this.tbUserName.Location = new System.Drawing.Point(77, 19);
120      this.tbUserName.Name = "tbUserName";
121      this.tbUserName.Size = new System.Drawing.Size(189, 20);
[1037]122      this.tbUserName.TabIndex = 2;
[1164]123      this.tbUserName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[956]124      //
[912]125      // lblPwd
126      //
127      this.lblPwd.AutoSize = true;
128      this.lblPwd.Location = new System.Drawing.Point(16, 54);
129      this.lblPwd.Name = "lblPwd";
130      this.lblPwd.Size = new System.Drawing.Size(53, 13);
131      this.lblPwd.TabIndex = 3;
132      this.lblPwd.Text = "Password";
133      //
134      // lblUsername
135      //
136      this.lblUsername.AutoSize = true;
137      this.lblUsername.Location = new System.Drawing.Point(16, 26);
138      this.lblUsername.Name = "lblUsername";
139      this.lblUsername.Size = new System.Drawing.Size(55, 13);
140      this.lblUsername.TabIndex = 2;
141      this.lblUsername.Text = "Username";
142      //
143      // tbPwd
144      //
145      this.tbPwd.Location = new System.Drawing.Point(77, 47);
146      this.tbPwd.Name = "tbPwd";
147      this.tbPwd.Size = new System.Drawing.Size(189, 20);
[1037]148      this.tbPwd.TabIndex = 3;
[956]149      this.tbPwd.UseSystemPasswordChar = true;
[1164]150      this.tbPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[912]151      //
152      // lblError
153      //
154      this.lblError.AutoSize = true;
155      this.lblError.ForeColor = System.Drawing.Color.Red;
[2065]156      this.lblError.Location = new System.Drawing.Point(12, 193);
[912]157      this.lblError.Name = "lblError";
158      this.lblError.Size = new System.Drawing.Size(0, 13);
159      this.lblError.TabIndex = 5;
160      //
[2065]161      // pictureBox1
162      //
163      this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
164      this.pictureBox1.Location = new System.Drawing.Point(12, 12);
165      this.pictureBox1.Name = "pictureBox1";
166      this.pictureBox1.Size = new System.Drawing.Size(170, 170);
167      this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
168      this.pictureBox1.TabIndex = 8;
169      this.pictureBox1.TabStop = false;
170      //
171      // btnCancel
172      //
173      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
174      this.btnCancel.Location = new System.Drawing.Point(259, 193);
175      this.btnCancel.Name = "btnCancel";
176      this.btnCancel.Size = new System.Drawing.Size(90, 23);
177      this.btnCancel.TabIndex = 9;
178      this.btnCancel.Text = "&Cancel";
179      this.btnCancel.UseVisualStyleBackColor = true;
180      this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
181      //
[778]182      // HiveServerConsole
183      //
[1483]184      this.AcceptButton = this.btnLogin;
[778]185      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
186      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[2109]187      this.BackColor = System.Drawing.SystemColors.Control;
[2065]188      this.CancelButton = this.btnCancel;
189      this.ClientSize = new System.Drawing.Size(482, 226);
190      this.Controls.Add(this.btnCancel);
191      this.Controls.Add(this.pictureBox1);
[912]192      this.Controls.Add(this.lblError);
[1483]193      this.Controls.Add(this.gpUser);
[778]194      this.Controls.Add(this.btnLogin);
[1483]195      this.Controls.Add(this.gbConfiguration);
[2065]196      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
[778]197      this.Name = "HiveServerConsole";
[2065]198      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
199      this.Text = "Server Console Logon";
[1164]200      this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1483]201      this.gbConfiguration.ResumeLayout(false);
202      this.gbConfiguration.PerformLayout();
203      this.gpUser.ResumeLayout(false);
204      this.gpUser.PerformLayout();
[2065]205      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
[778]206      this.ResumeLayout(false);
207      this.PerformLayout();
208
209    }
210
211    #endregion
212
[1483]213    private System.Windows.Forms.GroupBox gbConfiguration;
[778]214    private System.Windows.Forms.Label lblIp;
[978]215    private System.Windows.Forms.TextBox tbIp;
[778]216    private System.Windows.Forms.Button btnLogin;
[1483]217    private System.Windows.Forms.GroupBox gpUser;
[912]218    private System.Windows.Forms.TextBox tbUserName;
219    private System.Windows.Forms.Label lblPwd;
220    private System.Windows.Forms.Label lblUsername;
221    private System.Windows.Forms.TextBox tbPwd;
222    private System.Windows.Forms.Label lblError;
[2065]223    private System.Windows.Forms.PictureBox pictureBox1;
224    private System.Windows.Forms.Button btnCancel;
[778]225  }
226}
227
Note: See TracBrowser for help on using the repository browser.