EgtDOORCreator 1.9b6 :

- correzione errore caricamento valore di default.
This commit is contained in:
Nicola Pievani
2018-03-02 19:37:34 +00:00
parent 1ed61c0d4a
commit 45b060fd39
+2 -2
View File
@@ -1642,7 +1642,7 @@ Public Class TextBoxDGCParam
Sub New(sDDFName As String, sName As String, CurrCompo As Compo, sValue As String, ComboBox As ComboBoxParam, ComboValuelList As List(Of String), ConstList As List(Of String), TypeVar As String)
MyBase.New(sDDFName, sName, CurrCompo, sValue, ComboBox, ComboValuelList, TypeVar)
m_ConstList = ConstList
m_SelConst = m_ConstList(2)
m_SelConst = m_ConstList(0)
End Sub
End Class
@@ -1700,7 +1700,7 @@ Public Class TextBoxThicknessParam
Sub New(sDDFName As String, sName As String, CurrCompo As Compo, sValue As String, ComboBox As ComboBoxParam, ComboValuelList As List(Of String), ConstList As List(Of ItemConstThickness), TypeVar As String)
MyBase.New(sDDFName, sName, CurrCompo, sValue, ComboBox, ComboValuelList, TypeVar)
m_ConstList = ConstList
m_SelConst = m_ConstList(0)
m_SelConst = m_ConstList(2)
End Sub
End Class