diff --git a/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs index 5a0c7033c..48c323653 100644 --- a/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs +++ b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs @@ -260,8 +260,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 if (startTextBox24.Enabled) { WMStartStateStr[23] = startTextBox24.Text; WMStartState[23] = Utils.ParseUFloat(startTextBox24.Text); } } } - catch + catch(Exception e) { + log.ErrorFormat("Exception: {0}", e.Message); return; } diff --git a/TestBenchFramework/Program.cs b/TestBenchFramework/Program.cs index fbdcb3b6f..a4f0dbb49 100644 --- a/TestBenchFramework/Program.cs +++ b/TestBenchFramework/Program.cs @@ -38,10 +38,10 @@ namespace TBF #if DN100 || MUNICH public const int WMsCount = 3; - public const int LineCount = 3; + public const int LineSize = 3; #elif FUZHOU300 || FUZHOU150 || PT200IL || TORINO50 || BADGER_MALA_TRAT public const int WMsCount = 6; - public const int LineCount = 6; + public const int LineSize = 6; #elif TORUN_PT50_2015 public const int WMsCount = 20; public const int LineSize = 10; diff --git a/TestBenchFramework/Properties/AssemblyInfo.cs b/TestBenchFramework/Properties/AssemblyInfo.cs index 1557cdbb6..36a144dfd 100644 --- a/TestBenchFramework/Properties/AssemblyInfo.cs +++ b/TestBenchFramework/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.5.46.1")] -[assembly: AssemblyFileVersion("1.5.46.1")] +[assembly: AssemblyVersion("1.5.47.1")] +[assembly: AssemblyFileVersion("1.5.47.1")]