Free cookie consent management tool by TermsFeed Policy Generator

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

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

changed login, exception handling on login failed (#626)

File size: 10.3 KB
RevLine 
[778]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
[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.lblPort = new System.Windows.Forms.Label();
50      this.lblIp = new System.Windows.Forms.Label();
51      this.tbPort = new System.Windows.Forms.TextBox();
[1037]52      this.tbIp = new System.Windows.Forms.TextBox();
[912]53      this.btnLogin = new System.Windows.Forms.Button();
[1483]54      this.gpUser = new System.Windows.Forms.GroupBox();
[956]55      this.tbUserName = new System.Windows.Forms.TextBox();
[912]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.lblError = new System.Windows.Forms.Label();
[2065]60      this.pictureBox1 = new System.Windows.Forms.PictureBox();
61      this.btnCancel = new System.Windows.Forms.Button();
[1483]62      this.gbConfiguration.SuspendLayout();
63      this.gpUser.SuspendLayout();
[2065]64      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
[778]65      this.SuspendLayout();
66      //
[1483]67      // gbConfiguration
[778]68      //
[1483]69      this.gbConfiguration.Controls.Add(this.lblPort);
70      this.gbConfiguration.Controls.Add(this.lblIp);
71      this.gbConfiguration.Controls.Add(this.tbPort);
72      this.gbConfiguration.Controls.Add(this.tbIp);
[2065]73      this.gbConfiguration.Location = new System.Drawing.Point(188, 100);
[1483]74      this.gbConfiguration.Name = "gbConfiguration";
75      this.gbConfiguration.Size = new System.Drawing.Size(283, 82);
76      this.gbConfiguration.TabIndex = 4;
77      this.gbConfiguration.TabStop = false;
78      this.gbConfiguration.Text = "Configuration";
[778]79      //
80      // lblPort
81      //
82      this.lblPort.AutoSize = true;
83      this.lblPort.Location = new System.Drawing.Point(16, 54);
84      this.lblPort.Name = "lblPort";
85      this.lblPort.Size = new System.Drawing.Size(26, 13);
86      this.lblPort.TabIndex = 3;
87      this.lblPort.Text = "Port";
88      //
89      // lblIp
90      //
91      this.lblIp.AutoSize = true;
92      this.lblIp.Location = new System.Drawing.Point(16, 26);
93      this.lblIp.Name = "lblIp";
94      this.lblIp.Size = new System.Drawing.Size(17, 13);
95      this.lblIp.TabIndex = 2;
96      this.lblIp.Text = "IP";
97      //
98      // tbPort
99      //
[912]100      this.tbPort.Location = new System.Drawing.Point(77, 47);
[778]101      this.tbPort.Name = "tbPort";
[912]102      this.tbPort.Size = new System.Drawing.Size(189, 20);
[1037]103      this.tbPort.TabIndex = 6;
[1164]104      this.tbPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[778]105      //
[1037]106      // tbIp
107      //
108      this.tbIp.Location = new System.Drawing.Point(77, 19);
109      this.tbIp.Name = "tbIp";
110      this.tbIp.Size = new System.Drawing.Size(191, 20);
111      this.tbIp.TabIndex = 5;
[1164]112      this.tbIp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1037]113      //
[778]114      // btnLogin
115      //
[2065]116      this.btnLogin.Location = new System.Drawing.Point(355, 193);
[778]117      this.btnLogin.Name = "btnLogin";
118      this.btnLogin.Size = new System.Drawing.Size(116, 23);
[1037]119      this.btnLogin.TabIndex = 7;
[778]120      this.btnLogin.Text = "Login";
121      this.btnLogin.UseVisualStyleBackColor = true;
[1037]122      this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
[1164]123      this.btnLogin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[778]124      //
[1483]125      // gpUser
[912]126      //
[1483]127      this.gpUser.Controls.Add(this.tbUserName);
128      this.gpUser.Controls.Add(this.lblPwd);
129      this.gpUser.Controls.Add(this.lblUsername);
130      this.gpUser.Controls.Add(this.tbPwd);
[2065]131      this.gpUser.Location = new System.Drawing.Point(188, 12);
[1483]132      this.gpUser.Name = "gpUser";
133      this.gpUser.Size = new System.Drawing.Size(283, 82);
134      this.gpUser.TabIndex = 1;
135      this.gpUser.TabStop = false;
136      this.gpUser.Text = "User";
[912]137      //
[956]138      // tbUserName
139      //
140      this.tbUserName.Location = new System.Drawing.Point(77, 19);
141      this.tbUserName.Name = "tbUserName";
142      this.tbUserName.Size = new System.Drawing.Size(189, 20);
[1037]143      this.tbUserName.TabIndex = 2;
[1164]144      this.tbUserName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[956]145      //
[912]146      // lblPwd
147      //
148      this.lblPwd.AutoSize = true;
149      this.lblPwd.Location = new System.Drawing.Point(16, 54);
150      this.lblPwd.Name = "lblPwd";
151      this.lblPwd.Size = new System.Drawing.Size(53, 13);
152      this.lblPwd.TabIndex = 3;
153      this.lblPwd.Text = "Password";
154      //
155      // lblUsername
156      //
157      this.lblUsername.AutoSize = true;
158      this.lblUsername.Location = new System.Drawing.Point(16, 26);
159      this.lblUsername.Name = "lblUsername";
160      this.lblUsername.Size = new System.Drawing.Size(55, 13);
161      this.lblUsername.TabIndex = 2;
162      this.lblUsername.Text = "Username";
163      //
164      // tbPwd
165      //
166      this.tbPwd.Location = new System.Drawing.Point(77, 47);
167      this.tbPwd.Name = "tbPwd";
168      this.tbPwd.Size = new System.Drawing.Size(189, 20);
[1037]169      this.tbPwd.TabIndex = 3;
[956]170      this.tbPwd.UseSystemPasswordChar = true;
[1164]171      this.tbPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[912]172      //
173      // lblError
174      //
175      this.lblError.AutoSize = true;
176      this.lblError.ForeColor = System.Drawing.Color.Red;
[2065]177      this.lblError.Location = new System.Drawing.Point(12, 193);
[912]178      this.lblError.Name = "lblError";
179      this.lblError.Size = new System.Drawing.Size(0, 13);
180      this.lblError.TabIndex = 5;
181      //
[2065]182      // pictureBox1
183      //
184      this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
185      this.pictureBox1.Location = new System.Drawing.Point(12, 12);
186      this.pictureBox1.Name = "pictureBox1";
187      this.pictureBox1.Size = new System.Drawing.Size(170, 170);
188      this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
189      this.pictureBox1.TabIndex = 8;
190      this.pictureBox1.TabStop = false;
191      //
192      // btnCancel
193      //
194      this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
195      this.btnCancel.Location = new System.Drawing.Point(259, 193);
196      this.btnCancel.Name = "btnCancel";
197      this.btnCancel.Size = new System.Drawing.Size(90, 23);
198      this.btnCancel.TabIndex = 9;
199      this.btnCancel.Text = "&Cancel";
200      this.btnCancel.UseVisualStyleBackColor = true;
201      this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
202      //
[778]203      // HiveServerConsole
204      //
[1483]205      this.AcceptButton = this.btnLogin;
[778]206      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
207      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[2109]208      this.BackColor = System.Drawing.SystemColors.Control;
[2065]209      this.CancelButton = this.btnCancel;
210      this.ClientSize = new System.Drawing.Size(482, 226);
211      this.Controls.Add(this.btnCancel);
212      this.Controls.Add(this.pictureBox1);
[912]213      this.Controls.Add(this.lblError);
[1483]214      this.Controls.Add(this.gpUser);
[778]215      this.Controls.Add(this.btnLogin);
[1483]216      this.Controls.Add(this.gbConfiguration);
[2065]217      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
[778]218      this.Name = "HiveServerConsole";
[2065]219      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
220      this.Text = "Server Console Logon";
[1164]221      this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
[1483]222      this.gbConfiguration.ResumeLayout(false);
223      this.gbConfiguration.PerformLayout();
224      this.gpUser.ResumeLayout(false);
225      this.gpUser.PerformLayout();
[2065]226      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
[778]227      this.ResumeLayout(false);
228      this.PerformLayout();
229
230    }
231
232    #endregion
233
[1483]234    private System.Windows.Forms.GroupBox gbConfiguration;
[778]235    private System.Windows.Forms.Label lblPort;
236    private System.Windows.Forms.Label lblIp;
237    private System.Windows.Forms.TextBox tbPort;
[978]238    private System.Windows.Forms.TextBox tbIp;
[778]239    private System.Windows.Forms.Button btnLogin;
[1483]240    private System.Windows.Forms.GroupBox gpUser;
[912]241    private System.Windows.Forms.TextBox tbUserName;
242    private System.Windows.Forms.Label lblPwd;
243    private System.Windows.Forms.Label lblUsername;
244    private System.Windows.Forms.TextBox tbPwd;
245    private System.Windows.Forms.Label lblError;
[2065]246    private System.Windows.Forms.PictureBox pictureBox1;
247    private System.Windows.Forms.Button btnCancel;
[778]248  }
249}
250
Note: See TracBrowser for help on using the repository browser.