[1030] | 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] | 22 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
[1018] | 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();
|
---|
[1030] | 51 | this.lblNumJobs = new System.Windows.Forms.Label();
|
---|
| 52 | this.tbNumJobs = new System.Windows.Forms.TextBox();
|
---|
| 53 | this.lblError = new System.Windows.Forms.Label();
|
---|
[1018] | 54 | this.SuspendLayout();
|
---|
| 55 | //
|
---|
| 56 | // lblParentJob
|
---|
| 57 | //
|
---|
| 58 | this.lblParentJob.AutoSize = true;
|
---|
[1030] | 59 | this.lblParentJob.Location = new System.Drawing.Point(9, 36);
|
---|
[1018] | 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;
|
---|
[1030] | 68 | this.cbParJob.Location = new System.Drawing.Point(117, 33);
|
---|
[1018] | 69 | this.cbParJob.Name = "cbParJob";
|
---|
| 70 | this.cbParJob.Size = new System.Drawing.Size(212, 21);
|
---|
[1037] | 71 | this.cbParJob.TabIndex = 2;
|
---|
[1018] | 72 | //
|
---|
| 73 | // btnAdd
|
---|
| 74 | //
|
---|
[1030] | 75 | this.btnAdd.Location = new System.Drawing.Point(12, 65);
|
---|
[1018] | 76 | this.btnAdd.Name = "btnAdd";
|
---|
| 77 | this.btnAdd.Size = new System.Drawing.Size(75, 23);
|
---|
[1037] | 78 | this.btnAdd.TabIndex = 3;
|
---|
[1018] | 79 | this.btnAdd.Text = "Add";
|
---|
| 80 | this.btnAdd.UseVisualStyleBackColor = true;
|
---|
[1037] | 81 | this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
|
---|
[1018] | 82 | //
|
---|
| 83 | // btnClose
|
---|
| 84 | //
|
---|
[1483] | 85 | this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
[1030] | 86 | this.btnClose.Location = new System.Drawing.Point(254, 65);
|
---|
[1018] | 87 | this.btnClose.Name = "btnClose";
|
---|
| 88 | this.btnClose.Size = new System.Drawing.Size(75, 23);
|
---|
[1037] | 89 | this.btnClose.TabIndex = 4;
|
---|
[1018] | 90 | this.btnClose.Text = "Close";
|
---|
| 91 | this.btnClose.UseVisualStyleBackColor = true;
|
---|
[1037] | 92 | this.btnClose.Click += new System.EventHandler(this.BtnClose_Click);
|
---|
[1018] | 93 | //
|
---|
[1030] | 94 | // lblNumJobs
|
---|
| 95 | //
|
---|
| 96 | this.lblNumJobs.AutoSize = true;
|
---|
| 97 | this.lblNumJobs.Location = new System.Drawing.Point(12, 9);
|
---|
| 98 | this.lblNumJobs.Name = "lblNumJobs";
|
---|
| 99 | this.lblNumJobs.Size = new System.Drawing.Size(78, 13);
|
---|
| 100 | this.lblNumJobs.TabIndex = 6;
|
---|
| 101 | this.lblNumJobs.Text = "Number of jobs";
|
---|
| 102 | //
|
---|
| 103 | // tbNumJobs
|
---|
| 104 | //
|
---|
| 105 | this.tbNumJobs.Location = new System.Drawing.Point(117, 6);
|
---|
| 106 | this.tbNumJobs.Name = "tbNumJobs";
|
---|
| 107 | this.tbNumJobs.Size = new System.Drawing.Size(212, 20);
|
---|
[1037] | 108 | this.tbNumJobs.TabIndex = 1;
|
---|
[1030] | 109 | this.tbNumJobs.Text = "1";
|
---|
| 110 | //
|
---|
| 111 | // lblError
|
---|
| 112 | //
|
---|
| 113 | this.lblError.AutoSize = true;
|
---|
| 114 | this.lblError.Location = new System.Drawing.Point(94, 74);
|
---|
| 115 | this.lblError.Name = "lblError";
|
---|
| 116 | this.lblError.Size = new System.Drawing.Size(0, 13);
|
---|
| 117 | this.lblError.TabIndex = 8;
|
---|
| 118 | //
|
---|
[1018] | 119 | // AddJobForm
|
---|
| 120 | //
|
---|
[1483] | 121 | this.AcceptButton = this.btnAdd;
|
---|
[1018] | 122 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 123 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1483] | 124 | this.CancelButton = this.btnClose;
|
---|
[1030] | 125 | this.ClientSize = new System.Drawing.Size(344, 100);
|
---|
| 126 | this.Controls.Add(this.lblError);
|
---|
| 127 | this.Controls.Add(this.tbNumJobs);
|
---|
| 128 | this.Controls.Add(this.lblNumJobs);
|
---|
[1018] | 129 | this.Controls.Add(this.btnClose);
|
---|
| 130 | this.Controls.Add(this.btnAdd);
|
---|
| 131 | this.Controls.Add(this.cbParJob);
|
---|
| 132 | this.Controls.Add(this.lblParentJob);
|
---|
| 133 | this.Name = "AddJobForm";
|
---|
| 134 | this.Text = "Add Job";
|
---|
| 135 | this.ResumeLayout(false);
|
---|
| 136 | this.PerformLayout();
|
---|
| 137 |
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | #endregion
|
---|
| 141 |
|
---|
| 142 | private System.Windows.Forms.Label lblParentJob;
|
---|
| 143 | private System.Windows.Forms.ComboBox cbParJob;
|
---|
| 144 | private System.Windows.Forms.Button btnAdd;
|
---|
| 145 | private System.Windows.Forms.Button btnClose;
|
---|
[1030] | 146 | private System.Windows.Forms.Label lblNumJobs;
|
---|
| 147 | private System.Windows.Forms.TextBox tbNumJobs;
|
---|
| 148 | private System.Windows.Forms.Label lblError;
|
---|
[1018] | 149 | }
|
---|
| 150 | } |
---|