Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Hive_Management_Console_Refactoring_Ticket508/HeuristicLab.CEDMA.Server/ServerForm.designer.cs @ 1372

Last change on this file since 1372 was 378, checked in by gkronber, 16 years ago

worked on #189

File size: 5.9 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.CEDMA.Server {
23  partial class ServerForm {
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.addressTextBox = new System.Windows.Forms.TextBox();
48      this.externalAddressLabel = new System.Windows.Forms.Label();
49      this.activeAgentsLabel = new System.Windows.Forms.Label();
50      this.activeAgentsTextBox = new System.Windows.Forms.TextBox();
51      this.gridAddressLabel = new System.Windows.Forms.Label();
52      this.gridAddress = new System.Windows.Forms.TextBox();
53      this.startButton = new System.Windows.Forms.Button();
54      this.SuspendLayout();
55      //
56      // addressTextBox
57      //
58      this.addressTextBox.Location = new System.Drawing.Point(106, 6);
59      this.addressTextBox.Name = "addressTextBox";
60      this.addressTextBox.ReadOnly = true;
61      this.addressTextBox.Size = new System.Drawing.Size(229, 20);
62      this.addressTextBox.TabIndex = 0;
63      //
64      // externalAddressLabel
65      //
66      this.externalAddressLabel.AutoSize = true;
67      this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
68      this.externalAddressLabel.Name = "externalAddressLabel";
69      this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
70      this.externalAddressLabel.TabIndex = 3;
71      this.externalAddressLabel.Text = "&Address:";
72      //
73      // activeAgentsLabel
74      //
75      this.activeAgentsLabel.AutoSize = true;
76      this.activeAgentsLabel.Location = new System.Drawing.Point(12, 61);
77      this.activeAgentsLabel.Name = "activeAgentsLabel";
78      this.activeAgentsLabel.Size = new System.Drawing.Size(75, 13);
79      this.activeAgentsLabel.TabIndex = 7;
80      this.activeAgentsLabel.Text = "A&ctive agents:";
81      //
82      // activeAgentsTextBox
83      //
84      this.activeAgentsTextBox.Location = new System.Drawing.Point(106, 58);
85      this.activeAgentsTextBox.Name = "activeAgentsTextBox";
86      this.activeAgentsTextBox.ReadOnly = true;
87      this.activeAgentsTextBox.Size = new System.Drawing.Size(90, 20);
88      this.activeAgentsTextBox.TabIndex = 6;
89      this.activeAgentsTextBox.Text = "0";
90      this.activeAgentsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
91      //
92      // gridAddressLabel
93      //
94      this.gridAddressLabel.AutoSize = true;
95      this.gridAddressLabel.Location = new System.Drawing.Point(12, 35);
96      this.gridAddressLabel.Name = "gridAddressLabel";
97      this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
98      this.gridAddressLabel.TabIndex = 9;
99      this.gridAddressLabel.Text = "&Grid address:";
100      //
101      // gridAddress
102      //
103      this.gridAddress.Location = new System.Drawing.Point(106, 32);
104      this.gridAddress.Name = "gridAddress";
105      this.gridAddress.Size = new System.Drawing.Size(229, 20);
106      this.gridAddress.TabIndex = 8;
107      //
108      // startButton
109      //
110      this.startButton.Location = new System.Drawing.Point(15, 84);
111      this.startButton.Name = "startButton";
112      this.startButton.Size = new System.Drawing.Size(75, 23);
113      this.startButton.TabIndex = 10;
114      this.startButton.Text = "Start";
115      this.startButton.UseVisualStyleBackColor = true;
116      this.startButton.Click += new System.EventHandler(this.startButton_Click);
117      //
118      // ServerForm
119      //
120      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
121      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
122      this.ClientSize = new System.Drawing.Size(347, 119);
123      this.Controls.Add(this.startButton);
124      this.Controls.Add(this.gridAddressLabel);
125      this.Controls.Add(this.gridAddress);
126      this.Controls.Add(this.activeAgentsLabel);
127      this.Controls.Add(this.activeAgentsTextBox);
128      this.Controls.Add(this.externalAddressLabel);
129      this.Controls.Add(this.addressTextBox);
130      this.Name = "ServerForm";
131      this.Text = "Agent Server";
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
139    private System.Windows.Forms.TextBox addressTextBox;
140    private System.Windows.Forms.Label externalAddressLabel;
141    private System.Windows.Forms.Label activeAgentsLabel;
142    private System.Windows.Forms.TextBox activeAgentsTextBox;
143    private System.Windows.Forms.Label gridAddressLabel;
144    private System.Windows.Forms.TextBox gridAddress;
145    private System.Windows.Forms.Button startButton;
146  }
147}
Note: See TracBrowser for help on using the repository browser.