diff --git a/ProductFunctionTester/Main_Form.vb b/ProductFunctionTester/Main_Form.vb index 66bfa81..0afab84 100644 --- a/ProductFunctionTester/Main_Form.vb +++ b/ProductFunctionTester/Main_Form.vb @@ -9,7 +9,7 @@ Imports uPLibrary.Networking.M2Mqtt Public Class Main_Form Public Program_Name As String = "DUALSONIC_Multi_Function_Tester Ver." - Public Program_Version As String = "2.0.1" + Public Program_Version As String = "2.0.2" ''데이터 베이스 테이블 목록 @@ -5690,7 +5690,11 @@ ProcessEnd: Private Sub IQCReCount() txbDayCount.Text = Val(txbDayCount.Text) + 1 - txbOkCount.Text = Val(txbOkCount.Text) + 1 + If TestError = False Then 'Fail + txbNgCount.Text = Val(txbNgCount.Text) + 1 + Else + txbOkCount.Text = Val(txbOkCount.Text) + 1 + End If End Sub Private Sub RFReCount()