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

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

handle the case when no vehicle idle speed is given

parent 2d5d4d88
No related branches found
No related tags found
No related merge requests found
......@@ -362,7 +362,7 @@ Public Class VehicleForm
TbMassExtra.Text = vehicle.CurbMassExtra.ToGUIFormat()
TbLoad.Text = vehicle.Loading.ToGUIFormat()
TBrdyn.Text = (vehicle.DynamicTyreRadius.Value() * 1000).ToGUIFormat()
tbVehIdlingSpeed.Text = vehicle.EngineIdleSpeed.AsRPM.ToGUIFormat()
tbVehIdlingSpeed.Text = If(vehicle.EngineIdleSpeed Is Nothing, "", vehicle.EngineIdleSpeed.AsRPM.ToGUIFormat())
CbCdMode.SelectedValue = airdrag.CrossWindCorrectionMode
TbCdFile.Text =
......
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