Creazione nuova pagina che unisce visualizzatore e ottimizzatore

This commit is contained in:
Demetrio Cassarino
2023-10-24 18:08:57 +02:00
parent 9f16294994
commit fe0db46b69
38 changed files with 3721 additions and 408 deletions
@@ -157,6 +157,13 @@ Public Class MainWindowM
End Get
End Property
Private m_bOnlyProd As Boolean = False
Friend ReadOnly Property bOnlyProd As Boolean
Get
Return m_bOnlyProd
End Get
End Property
#End Region ' FIELDS
#Region "CONSTRUCTOR"
@@ -291,6 +298,8 @@ Public Class MainWindowM
Dim sLuaBaseLib As String = String.Empty
GetMainPrivateProfileString(S_LUA, K_BASELIB, "EgtBase", sLuaBaseLib)
EgtLuaRequire(sLuaBaseLib)
' Recupero flag OnlyProd
m_bOnlyProd = GetMainPrivateProfileInt(S_GENERAL, K_ONLYPROD, 0) = 1
' Info su opzioni chiave
EgtOutLog("KeyOptions : " & bKey.ToString() & " " & m_nKeyOptions.ToString())
End Sub