Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/24/09 17:27:17 (15 years ago)
Author:
gkronber
Message:

Added views for the executer and the dispatcher and the server (which contains the executer and dispatcher views). #676 (Cockpit for the CEDMA Server to control algorithm settings)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/ServerApplication.cs

    r1529 r2088  
    3030  class ServerApplication : ApplicationBase {
    3131    public override void Run() {
    32       Form mainForm = new ServerForm();
     32      Server server = new Server();
     33      server.Start();
     34      Form mainForm = new Form();
     35      UserControl serverControl = (UserControl)server.CreateView();
     36      serverControl.Dock = DockStyle.Fill;
     37      mainForm.Controls.Add(serverControl);
    3338      Application.Run(mainForm);
    3439    }
Note: See TracChangeset for help on using the changeset viewer.