EgtDOORCreator 1.9b2 :

-aggiunta dell'HardwareManager,
-aggiunta della pagina di stampa.
This commit is contained in:
Nicola Pievani
2018-02-14 17:55:48 +00:00
parent 3c2b662cda
commit cbfdc473c2
47 changed files with 4329 additions and 303 deletions
+9
View File
@@ -34,6 +34,7 @@ Friend Module OptionModule
End Enum
Friend m_SmartHelp As Boolean = False
Friend m_DisableHM As Boolean = False
Friend m_Width As String
Friend m_Height As String
@@ -199,6 +200,14 @@ Friend Module OptionModule
m_SmartHelp = False
End If
Dim nDisableHM As Integer = 1
nDisableHM = GetMainPrivateProfileInt(S_GENERAL, K_DISABLEHM, 1)
If nDisableHM = 0 Then
m_DisableHM = True
Else
m_DisableHM = False
End If
' leggo il tipo di Bevel selezionato
Dim BevelUp As Visibility
DefaultGetPrivateProfilesBevel(S_EDGE, K_BEVELU_INI, BevelUp)