Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/06/12 15:52:34 (12 years ago)
Author:
ascheibe
Message:

#1174 small ui improvement when the client isn't registered

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views/OKBRunView.cs

    r7331 r7973  
    2121
    2222using System;
     23using System.Windows.Forms;
    2324using HeuristicLab.Core.Views;
    2425using HeuristicLab.MainForm;
     
    6869        Content.Store();
    6970      }
     71      catch (MissingClientRegistrationException) {
     72        MessageBox.Show("You have to register your client to be able to store OKB runs." + Environment.NewLine
     73          + " Please click in the menu bar on Services -> Access -> Client Information and register your client. ", "Missing client registration", MessageBoxButtons.OK, MessageBoxIcon.Information);
     74      }
    7075      catch (Exception ex) {
    7176        ErrorHandling.ShowErrorDialog(this, "Store failed.", ex);
Note: See TracChangeset for help on using the changeset viewer.