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 |
|
---|
22 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
23 | partial class AddUserForm {
|
---|
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.lblOne = new System.Windows.Forms.Label();
|
---|
48 | this.lblGroup = new System.Windows.Forms.Label();
|
---|
49 | this.tbOne = new System.Windows.Forms.TextBox();
|
---|
50 | this.cbGroups = new System.Windows.Forms.ComboBox();
|
---|
51 | this.btnAdd = new System.Windows.Forms.Button();
|
---|
52 | this.btnClose = new System.Windows.Forms.Button();
|
---|
53 | this.tbPwd = new System.Windows.Forms.TextBox();
|
---|
54 | this.lblPassword = new System.Windows.Forms.Label();
|
---|
55 | this.SuspendLayout();
|
---|
56 | //
|
---|
57 | // lblOne
|
---|
58 | //
|
---|
59 | this.lblOne.AutoSize = true;
|
---|
60 | this.lblOne.Location = new System.Drawing.Point(12, 14);
|
---|
61 | this.lblOne.Name = "lblOne";
|
---|
62 | this.lblOne.Size = new System.Drawing.Size(35, 13);
|
---|
63 | this.lblOne.TabIndex = 0;
|
---|
64 | this.lblOne.Text = "label1";
|
---|
65 | //
|
---|
66 | // lblGroup
|
---|
67 | //
|
---|
68 | this.lblGroup.AutoSize = true;
|
---|
69 | this.lblGroup.Location = new System.Drawing.Point(12, 71);
|
---|
70 | this.lblGroup.Name = "lblGroup";
|
---|
71 | this.lblGroup.Size = new System.Drawing.Size(35, 13);
|
---|
72 | this.lblGroup.TabIndex = 1;
|
---|
73 | this.lblGroup.Text = "label2";
|
---|
74 | //
|
---|
75 | // tbOne
|
---|
76 | //
|
---|
77 | this.tbOne.Location = new System.Drawing.Point(120, 7);
|
---|
78 | this.tbOne.Name = "tbOne";
|
---|
79 | this.tbOne.Size = new System.Drawing.Size(212, 20);
|
---|
80 | this.tbOne.TabIndex = 1;
|
---|
81 | //
|
---|
82 | // cbGroups
|
---|
83 | //
|
---|
84 | this.cbGroups.FormattingEnabled = true;
|
---|
85 | this.cbGroups.Location = new System.Drawing.Point(120, 68);
|
---|
86 | this.cbGroups.Name = "cbGroups";
|
---|
87 | this.cbGroups.Size = new System.Drawing.Size(212, 21);
|
---|
88 | this.cbGroups.TabIndex = 3;
|
---|
89 | //
|
---|
90 | // btnAdd
|
---|
91 | //
|
---|
92 | this.btnAdd.Location = new System.Drawing.Point(12, 95);
|
---|
93 | this.btnAdd.Name = "btnAdd";
|
---|
94 | this.btnAdd.Size = new System.Drawing.Size(75, 23);
|
---|
95 | this.btnAdd.TabIndex = 4;
|
---|
96 | this.btnAdd.Text = "Add";
|
---|
97 | this.btnAdd.UseVisualStyleBackColor = true;
|
---|
98 | this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
|
---|
99 | //
|
---|
100 | // btnClose
|
---|
101 | //
|
---|
102 | this.btnClose.Location = new System.Drawing.Point(257, 95);
|
---|
103 | this.btnClose.Name = "btnClose";
|
---|
104 | this.btnClose.Size = new System.Drawing.Size(75, 23);
|
---|
105 | this.btnClose.TabIndex = 5;
|
---|
106 | this.btnClose.Text = "Close";
|
---|
107 | this.btnClose.UseVisualStyleBackColor = true;
|
---|
108 | this.btnClose.Click += new System.EventHandler(this.BtnClose_Click);
|
---|
109 | //
|
---|
110 | // tbPwd
|
---|
111 | //
|
---|
112 | this.tbPwd.Location = new System.Drawing.Point(120, 37);
|
---|
113 | this.tbPwd.Name = "tbPwd";
|
---|
114 | this.tbPwd.Size = new System.Drawing.Size(212, 20);
|
---|
115 | this.tbPwd.TabIndex = 2;
|
---|
116 | this.tbPwd.UseSystemPasswordChar = true;
|
---|
117 | //
|
---|
118 | // lblPassword
|
---|
119 | //
|
---|
120 | this.lblPassword.AutoSize = true;
|
---|
121 | this.lblPassword.Location = new System.Drawing.Point(12, 44);
|
---|
122 | this.lblPassword.Name = "lblPassword";
|
---|
123 | this.lblPassword.Size = new System.Drawing.Size(53, 13);
|
---|
124 | this.lblPassword.TabIndex = 0;
|
---|
125 | this.lblPassword.Text = "Password";
|
---|
126 | //
|
---|
127 | // AddUserForm
|
---|
128 | //
|
---|
129 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
130 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
131 | this.BackColor = System.Drawing.SystemColors.Control;
|
---|
132 | this.ClientSize = new System.Drawing.Size(344, 130);
|
---|
133 | this.Controls.Add(this.tbPwd);
|
---|
134 | this.Controls.Add(this.lblPassword);
|
---|
135 | this.Controls.Add(this.btnClose);
|
---|
136 | this.Controls.Add(this.btnAdd);
|
---|
137 | this.Controls.Add(this.cbGroups);
|
---|
138 | this.Controls.Add(this.tbOne);
|
---|
139 | this.Controls.Add(this.lblGroup);
|
---|
140 | this.Controls.Add(this.lblOne);
|
---|
141 | this.Name = "AddUserForm";
|
---|
142 | this.Text = "AddUserForm";
|
---|
143 | this.ResumeLayout(false);
|
---|
144 | this.PerformLayout();
|
---|
145 |
|
---|
146 | }
|
---|
147 |
|
---|
148 | #endregion
|
---|
149 |
|
---|
150 | private System.Windows.Forms.Label lblOne;
|
---|
151 | private System.Windows.Forms.Label lblGroup;
|
---|
152 | private System.Windows.Forms.TextBox tbOne;
|
---|
153 | private System.Windows.Forms.ComboBox cbGroups;
|
---|
154 | private System.Windows.Forms.Button btnAdd;
|
---|
155 | private System.Windows.Forms.Button btnClose;
|
---|
156 | private System.Windows.Forms.TextBox tbPwd;
|
---|
157 | private System.Windows.Forms.Label lblPassword;
|
---|
158 | }
|
---|
159 | } |
---|