Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Grid/ClientForm.cs @ 1113

Last change on this file since 1113 was 1113, checked in by gkronber, 15 years ago

quick fix for #462 (GridClient needs super-user permissions to write to the event-log) is to disable logging to the event-log. Trace statements are left in the code so that the trace destination can be configured via app.config (log-file).

File size: 2.3 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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using System.ServiceModel;
31using HeuristicLab.Core;
32using System.Xml;
33using System.Threading;
34using System.IO;
35using System.Net;
36using System.Diagnostics;
37
38namespace HeuristicLab.Grid {
39  public partial class ClientForm : Form {
40    private GridClient client;
41    public ClientForm() {
42      InitializeComponent();
43
44      client = new GridClient();
45      UpdateControl();
46    }
47
48    private void startButton_Click(object sender, EventArgs e) {
49      client.Start(addressTextBox.Text);
50      UpdateControl();
51    }
52
53    private void stopButton_Click(object sender, EventArgs e) {
54      client.Stop();
55      UpdateControl();
56    }
57
58    private void UpdateControl() {
59      if(client.Waiting) {
60        startButton.Enabled = false;
61        stopButton.Enabled = true;
62        statusTextBox.Text = "Waiting for engine";
63      } else if(client.Executing) {
64        startButton.Enabled = false;
65        stopButton.Enabled = true;
66        statusTextBox.Text = "Executing engine";
67      } else if(client.Stopped) {
68        startButton.Enabled = true;
69        stopButton.Enabled = false;
70        statusTextBox.Text = "Stopped";
71      }
72      statusStrip.Text = client.StatusMessage;
73    }
74
75    private void timer_Tick(object sender, EventArgs e) {
76      UpdateControl();
77    }
78  }
79}
Note: See TracBrowser for help on using the repository browser.