Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/08 15:33:37 (16 years ago)
Author:
aleitner
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.Designer.cs

    r1018 r1030  
    1 namespace HeuristicLab.Hive.Server.Console {
     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 {
    223  partial class AddJobForm {
    324    /// <summary>
     
    2849      this.btnAdd = new System.Windows.Forms.Button();
    2950      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();
    3054      this.SuspendLayout();
    3155      //
     
    3357      //
    3458      this.lblParentJob.AutoSize = true;
    35       this.lblParentJob.Location = new System.Drawing.Point(12, 9);
     59      this.lblParentJob.Location = new System.Drawing.Point(9, 36);
    3660      this.lblParentJob.Name = "lblParentJob";
    3761      this.lblParentJob.Size = new System.Drawing.Size(58, 13);
     
    4266      //
    4367      this.cbParJob.FormattingEnabled = true;
    44       this.cbParJob.Location = new System.Drawing.Point(120, 6);
     68      this.cbParJob.Location = new System.Drawing.Point(117, 33);
    4569      this.cbParJob.Name = "cbParJob";
    4670      this.cbParJob.Size = new System.Drawing.Size(212, 21);
     
    4973      // btnAdd
    5074      //
    51       this.btnAdd.Location = new System.Drawing.Point(15, 38);
     75      this.btnAdd.Location = new System.Drawing.Point(12, 65);
    5276      this.btnAdd.Name = "btnAdd";
    5377      this.btnAdd.Size = new System.Drawing.Size(75, 23);
     
    5983      // btnClose
    6084      //
    61       this.btnClose.Location = new System.Drawing.Point(257, 38);
     85      this.btnClose.Location = new System.Drawing.Point(254, 65);
    6286      this.btnClose.Name = "btnClose";
    6387      this.btnClose.Size = new System.Drawing.Size(75, 23);
     
    6791      this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
    6892      //
     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      //
    69118      // AddJobForm
    70119      //
    71120      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    72121      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    73       this.ClientSize = new System.Drawing.Size(344, 68);
     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);
    74126      this.Controls.Add(this.btnClose);
    75127      this.Controls.Add(this.btnAdd);
     
    89141    private System.Windows.Forms.Button btnAdd;
    90142    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;
    91146  }
    92147}
Note: See TracChangeset for help on using the changeset viewer.