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

Skip to content
Snippets Groups Projects
Commit e9ad8e0f authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

iepc form: wheel motor and axlegear are mutualy exclusive

parent 39cf76b2
No related branches found
No related tags found
No related merge requests found
......@@ -709,6 +709,10 @@ Public Class IEPCForm
Private Sub cbDesignTypeWheelMotor_CheckedChanged(sender As Object, e As EventArgs) Handles cbDesignTypeWheelMotor.CheckedChanged
tbNumberOfDesignTypeWheelMotor.Enabled = cbDesignTypeWheelMotor.Checked
cbDifferentialIncluded.Enabled = Not cbDesignTypeWheelMotor.Checked
if (cbDesignTypeWheelMotor.Checked) then
cbDifferentialIncluded.Checked = False
end if
If tbNumberOfDesignTypeWheelMotor.Enabled = False Then _
tbNumberOfDesignTypeWheelMotor.Text = "0"
Change()
......
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