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

Skip to content
Snippets Groups Projects
Commit 267af0e6 authored by Raphael Kalchgruber's avatar Raphael Kalchgruber
Browse files

IEPC fix, NrDesignWheelMotor field is now corretcly greyed out

parent 73d54843
No related branches found
No related tags found
No related merge requests found
......@@ -300,6 +300,7 @@ Public Class IEPCForm
tbInertia.Text = ""
cbDifferentialIncluded.Checked = False
cbDesignTypeWheelMotor.Checked = False
FlowLayoutPanel5.Enabled = False
tbNumberOfDesignTypeWheelMotor.Text = "0"
tbThermalOverload.Text = ""
......@@ -725,6 +726,7 @@ Public Class IEPCForm
Private Sub cbDesignTypeWheelMotor_CheckedChanged(sender As Object, e As EventArgs) Handles cbDesignTypeWheelMotor.CheckedChanged
tbNumberOfDesignTypeWheelMotor.Enabled = cbDesignTypeWheelMotor.Checked
FlowLayoutPanel5.Enabled = cbDesignTypeWheelMotor.Checked
cbDifferentialIncluded.Enabled = Not cbDesignTypeWheelMotor.Checked
if (cbDesignTypeWheelMotor.Checked) then
cbDifferentialIncluded.Checked = False
......
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