Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autofilling the minimum and maximum temperature Receivers in the Climatic Check Data Temperature dialog #5946

Merged
merged 9 commits into from
Aug 26, 2020
4 changes: 4 additions & 0 deletions instat/dlgClimaticCheckDataTemperature.vb
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,15 @@ Public Class dlgClimaticCheckDataTemperature
ucrReceiverElement1.SetParameter(New RParameter("x", 0, bNewIncludeArgumentName:=False))
ucrReceiverElement1.SetParameterIsString()
ucrReceiverElement1.bWithQuotes = False
ucrReceiverElement1.SetClimaticType("temp_max")
ucrReceiverElement1.bAutoFill = True
ucrReceiverElement1.SetMeAsReceiver()

ucrReceiverElement2.Selector = ucrSelectorTemperature
ucrReceiverElement2.SetParameter(New RParameter("x", 1, bNewIncludeArgumentName:=False))
ucrReceiverElement2.SetParameterIsString()
ucrReceiverElement2.SetClimaticType("temp_min")
ucrReceiverElement2.bAutoFill = True
ucrReceiverElement2.bWithQuotes = False

'Checkboxes for options
Expand Down