Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/10 05:19:03 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • finished implemented ideas which came up during yesterday's presentation of HeuristicLab.Core and related plugins
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleDataView.cs

    r2676 r2694  
    8989    }
    9090    private void valueTextBox_Validating(object sender, CancelEventArgs e) {
    91       if (!StringConvertibleData.Validate(valueTextBox.Text)) {
     91      string errorMessage;
     92      if (!StringConvertibleData.Validate(valueTextBox.Text, out errorMessage)) {
    9293        e.Cancel = true;
    93         errorProvider.SetError(valueTextBox, "Invalid Value");
     94        errorProvider.SetError(valueTextBox, errorMessage);
    9495        valueTextBox.SelectAll();
    9596      }
Note: See TracChangeset for help on using the changeset viewer.