diff --git a/ITC81DB_2H/Forms/FormMain.cs b/ITC81DB_2H/Forms/FormMain.cs index 29a30ff..bdaae3e 100644 --- a/ITC81DB_2H/Forms/FormMain.cs +++ b/ITC81DB_2H/Forms/FormMain.cs @@ -25,8 +25,8 @@ namespace ITC81DB_2H.Forms public partial class FormMain : Form { #region Field - public static string DisplayVersion = "3.3.4"; - public static string ReleaseDate = "2024.08.09"; + public static string DisplayVersion = "3.3.5"; + public static string ReleaseDate = "2024.09.23"; private SmartSplash SmartSplashProgramLoad; public bool IsCommunicationLogOpen; @@ -1044,22 +1044,22 @@ namespace ITC81DB_2H.Forms { if (this.SystemConfig1.ProductNumber == wData.BoardProductNumber) { - if (wData.ExNGCount != wData.BoardExNGCount) + if (wData.ExNGCount < wData.BoardExNGCount) this.CurrentWeightData.ETCExNGCount = wData.BoardExNGCount - wData.BoardMetalDetectionCount - wData.BoardDoubleEntryCount; - if (wData.MetalDetectionCount != wData.BoardMetalDetectionCount) + if (wData.MetalDetectionCount < wData.BoardMetalDetectionCount) this.CurrentWeightData.MetalDetectionCount = wData.BoardMetalDetectionCount; - if (wData.DoubleEntryCount != wData.BoardDoubleEntryCount) + if (wData.DoubleEntryCount < wData.BoardDoubleEntryCount) this.CurrentWeightData.DoubleEntryCount = wData.BoardDoubleEntryCount; - if (wData.OverCount != wData.BoardOverCount) + if (wData.OverCount < wData.BoardOverCount) this.CurrentWeightData.OverCount = wData.BoardOverCount; - if (wData.PassCount != wData.BoardPassCount) + if (wData.PassCount < wData.BoardPassCount) this.CurrentWeightData.PassCount = wData.BoardPassCount; - if (wData.UnderCount != wData.BoardUnderCount) + if (wData.UnderCount < wData.BoardUnderCount) this.CurrentWeightData.UnderCount = wData.BoardUnderCount; if (wData.StartTime.Year == 1111) diff --git a/ITC81DB_2H/Version.txt b/ITC81DB_2H/Version.txt index 282df05..70f9a71 100644 --- a/ITC81DB_2H/Version.txt +++ b/ITC81DB_2H/Version.txt @@ -13,6 +13,11 @@ ±âº»Çü ÄÁº£¾î °íÁ¤¹Ð¼¾¼­ °è·®±â */ +@ Ver 3.3.5 by CJY + - 2024.09.23 + - Ver 3.3.4 Modify + - ºÎÆà ½Ã, ¸ÞÀκ¸µå Ä«¿îÆ® °ªÀÌ LCD °ªº¸´Ù Ŭ °æ¿ì¿¡¸¸ LCD Ä«¿îÆ® °ªÀ» º¸µå Ä«¿îÆ® °ªÀ¸·Î º¯°æÇϵµ·Ï ¼öÁ¤ + @ Ver 3.3.4 by CJY - 2024.08.09 - Ver 3.3.3 Modify diff --git a/ITC81DB_2H/bin/Release/ITC81DB_2H.exe b/ITC81DB_2H/bin/Release/ITC81DB_2H.exe index 1df626a..e943fce 100644 Binary files a/ITC81DB_2H/bin/Release/ITC81DB_2H.exe and b/ITC81DB_2H/bin/Release/ITC81DB_2H.exe differ diff --git a/ITC81DB_2H/obj/Release/ITC81DB_2H.exe b/ITC81DB_2H/obj/Release/ITC81DB_2H.exe index 1df626a..e943fce 100644 Binary files a/ITC81DB_2H/obj/Release/ITC81DB_2H.exe and b/ITC81DB_2H/obj/Release/ITC81DB_2H.exe differ