Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.Designer.cs @ 1030

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

jobs in groups offline, calculating, finished - more than one job can be added (#380)

File size: 5.4 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.Console {
23  partial class AddJobForm {
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.lblParentJob = new System.Windows.Forms.Label();
48      this.cbParJob = new System.Windows.Forms.ComboBox();
49      this.btnAdd = new System.Windows.Forms.Button();
50      this.btnClose = new System.Windows.Forms.Button();
51      this.lblNumJobs = new System.Windows.Forms.Label();
52      this.tbNumJobs = new System.Windows.Forms.TextBox();
53      this.lblError = new System.Windows.Forms.Label();
54      this.SuspendLayout();
55      //
56      // lblParentJob
57      //
58      this.lblParentJob.AutoSize = true;
59      this.lblParentJob.Location = new System.Drawing.Point(9, 36);
60      this.lblParentJob.Name = "lblParentJob";
61      this.lblParentJob.Size = new System.Drawing.Size(58, 13);
62      this.lblParentJob.TabIndex = 1;
63      this.lblParentJob.Text = "Parent Job";
64      //
65      // cbParJob
66      //
67      this.cbParJob.FormattingEnabled = true;
68      this.cbParJob.Location = new System.Drawing.Point(117, 33);
69      this.cbParJob.Name = "cbParJob";
70      this.cbParJob.Size = new System.Drawing.Size(212, 21);
71      this.cbParJob.TabIndex = 3;
72      //
73      // btnAdd
74      //
75      this.btnAdd.Location = new System.Drawing.Point(12, 65);
76      this.btnAdd.Name = "btnAdd";
77      this.btnAdd.Size = new System.Drawing.Size(75, 23);
78      this.btnAdd.TabIndex = 4;
79      this.btnAdd.Text = "Add";
80      this.btnAdd.UseVisualStyleBackColor = true;
81      this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
82      //
83      // btnClose
84      //
85      this.btnClose.Location = new System.Drawing.Point(254, 65);
86      this.btnClose.Name = "btnClose";
87      this.btnClose.Size = new System.Drawing.Size(75, 23);
88      this.btnClose.TabIndex = 5;
89      this.btnClose.Text = "Close";
90      this.btnClose.UseVisualStyleBackColor = true;
91      this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
92      //
93      // lblNumJobs
94      //
95      this.lblNumJobs.AutoSize = true;
96      this.lblNumJobs.Location = new System.Drawing.Point(12, 9);
97      this.lblNumJobs.Name = "lblNumJobs";
98      this.lblNumJobs.Size = new System.Drawing.Size(78, 13);
99      this.lblNumJobs.TabIndex = 6;
100      this.lblNumJobs.Text = "Number of jobs";
101      //
102      // tbNumJobs
103      //
104      this.tbNumJobs.Location = new System.Drawing.Point(117, 6);
105      this.tbNumJobs.Name = "tbNumJobs";
106      this.tbNumJobs.Size = new System.Drawing.Size(212, 20);
107      this.tbNumJobs.TabIndex = 7;
108      this.tbNumJobs.Text = "1";
109      //
110      // lblError
111      //
112      this.lblError.AutoSize = true;
113      this.lblError.Location = new System.Drawing.Point(94, 74);
114      this.lblError.Name = "lblError";
115      this.lblError.Size = new System.Drawing.Size(0, 13);
116      this.lblError.TabIndex = 8;
117      //
118      // AddJobForm
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(344, 100);
123      this.Controls.Add(this.lblError);
124      this.Controls.Add(this.tbNumJobs);
125      this.Controls.Add(this.lblNumJobs);
126      this.Controls.Add(this.btnClose);
127      this.Controls.Add(this.btnAdd);
128      this.Controls.Add(this.cbParJob);
129      this.Controls.Add(this.lblParentJob);
130      this.Name = "AddJobForm";
131      this.Text = "Add Job";
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
139    private System.Windows.Forms.Label lblParentJob;
140    private System.Windows.Forms.ComboBox cbParJob;
141    private System.Windows.Forms.Button btnAdd;
142    private System.Windows.Forms.Button btnClose;
143    private System.Windows.Forms.Label lblNumJobs;
144    private System.Windows.Forms.TextBox tbNumJobs;
145    private System.Windows.Forms.Label lblError;
146  }
147}
Note: See TracBrowser for help on using the repository browser.