Changeset 274 for trunk/sources/HeuristicLab.DataAnalysis
- Timestamp:
- 05/29/08 18:14:22 (17 years ago)
- Location:
- trunk/sources/HeuristicLab.DataAnalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAnalysis/DataFormatException.cs
r273 r274 35 35 get { return token; } 36 36 } 37 private string message; 38 public string Message { 39 get { return message; } 40 } 41 42 public DataFormatException(string message, string token, int line) { 43 this.message = message; 37 public DataFormatException(string message, string token, int line) : base(message+"\nToken: " + token + " (line: " + line + ")"){ 44 38 this.token = token; 45 39 this.line = line; 46 40 } 47 48 public override string ToString() {49 return message + "\nToken: " + token + " (line: " + line + ")\n";50 }51 41 } 52 42 } -
trunk/sources/HeuristicLab.DataAnalysis/DatasetView.cs
r237 r274 70 70 dataGridView.Columns[i].Name = GetColumnName(i); 71 71 } 72 dataGridView.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect;72 //dataGridView.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect; 73 73 } else { 74 74 rowsTextBox.Text = "1";
Note: See TracChangeset
for help on using the changeset viewer.