Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit ceddfd63 authored by Kostis ANAGNOSTOPOULOS's avatar Kostis ANAGNOSTOPOULOS
Browse files

GUI: FIX "Calibrate" button not to change to "Evaluate" after completion.

parent 51b5ccdb
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
If SectionDev Then
' Output on the GUI
fInfWarErrBW(6, False, "Identifing the sections")
fInfWarErrBW(6, False, "Identifying the sections")
' Devide the measured data into there sections
DevInSec(vMSC)
......
......@@ -194,7 +194,7 @@ Public Class CSEMain
' Read the data from the GUI
If Not fGetOpt(True, Cali) Then
Me.ButtonCalC.Text = "Calculate"
Me.ButtonCalC.Text = "Calibrate"
Exit Sub
End If
......@@ -210,12 +210,12 @@ Public Class CSEMain
If resEx = MsgBoxResult.Yes Then
MkDir(OutFolder)
Else
Me.ButtonCalC.Text = "Calculate"
Me.ButtonCalC.Text = "Calibrate"
Exit Sub
End If
Else
fInfWarErr(9, False, "No outputfolder is given!")
Me.ButtonCalC.Text = "Calculate"
Me.ButtonCalC.Text = "Calibrate"
Exit Sub
End If
End If
......@@ -618,7 +618,7 @@ Public Class CSEMain
' Reset the calculate button to calculate
If Cali Then
Me.ButtonCalC.Text = "Calculate"
Me.ButtonCalC.Text = "Calibrate"
Me.TextBoxRVeh.Text = Math.Round(fv_veh, 3).ToString
Me.TextBoxRAirPos.Text = Math.Round(fv_pe, 3).ToString
Me.TextBoxRBetaMis.Text = Math.Round(beta_ame, 2).ToString
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment