Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/12 13:07:00 (12 years ago)
Author:
mkommend
Message:

#1783: Corrected tool tips in optimizer views and last errors in batchrun execution state handling.

Location:
trunk/sources/HeuristicLab.Optimization.Views/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs

    r7967 r8190  
    5959      //
    6060      this.startButton.Location = new System.Drawing.Point(0, 458);
    61       this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
     61      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
    6262      //
    6363      // executionTimeTextBox
     
    7272      //
    7373      this.pauseButton.Location = new System.Drawing.Point(30, 458);
    74       this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
     74      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
    7575      //
    7676      // stopButton
    7777      //
    7878      this.stopButton.Location = new System.Drawing.Point(60, 458);
    79       this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
     79      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
    8080      //
    8181      // resetButton
    8282      //
    8383      this.resetButton.Location = new System.Drawing.Point(90, 458);
    84       this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
     84      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
    8585      //
    8686      // nameTextBox
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.Designer.cs

    r7967 r8190  
    5555      //
    5656      this.startButton.Location = new System.Drawing.Point(0, 459);
    57       this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
     57      this.toolTip.SetToolTip(this.startButton, "Start/Resume Batchrun");
    5858      //
    5959      // executionTimeTextBox
     
    6868      //
    6969      this.pauseButton.Location = new System.Drawing.Point(30, 459);
    70       this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
     70      this.toolTip.SetToolTip(this.pauseButton, "Pause Batchrun");
    7171      //
    7272      // stopButton
    7373      //
    7474      this.stopButton.Location = new System.Drawing.Point(60, 459);
    75       this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
     75      this.toolTip.SetToolTip(this.stopButton, "Stop Batchrun");
    7676      //
    7777      // resetButton
    7878      //
    7979      this.resetButton.Location = new System.Drawing.Point(90, 458);
    80       this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
     80      this.toolTip.SetToolTip(this.resetButton, "Reset Batchrun");
    8181      //
    8282      // nameTextBox
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/IOptimizerView.Designer.cs

    r7967 r8190  
    7373      this.startButton.Size = new System.Drawing.Size(24, 24);
    7474      this.startButton.TabIndex = 10;
    75       this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
     75      this.toolTip.SetToolTip(this.startButton, "Start/Resume Optimizer");
    7676      this.startButton.UseVisualStyleBackColor = true;
    7777      this.startButton.Click += new System.EventHandler(this.startButton_Click);
     
    104104      this.pauseButton.Size = new System.Drawing.Size(24, 24);
    105105      this.pauseButton.TabIndex = 11;
    106       this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
     106      this.toolTip.SetToolTip(this.pauseButton, "Pause Optimizer");
    107107      this.pauseButton.UseVisualStyleBackColor = true;
    108108      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
     
    116116      this.stopButton.Size = new System.Drawing.Size(24, 24);
    117117      this.stopButton.TabIndex = 12;
    118       this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
     118      this.toolTip.SetToolTip(this.stopButton, "Stop Optimizer");
    119119      this.stopButton.UseVisualStyleBackColor = true;
    120120      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
     
    128128      this.resetButton.Size = new System.Drawing.Size(24, 24);
    129129      this.resetButton.TabIndex = 13;
    130       this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
     130      this.toolTip.SetToolTip(this.resetButton, "Reset Optimizer");
    131131      this.resetButton.UseVisualStyleBackColor = true;
    132132      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
Note: See TracChangeset for help on using the changeset viewer.