Files
OmagVIEW/ConstGen.vb
T
2021-08-30 15:15:39 +02:00

93 lines
3.5 KiB
VB.net

'----------------------------------------------------------------------------
' EgalTech 2015-2015
'----------------------------------------------------------------------------
' File : ConstGen.vb Data : 12.02.15 Versione : 1.6b3
' Contenuto : Modulo costanti generali.
'
'
'
' Modifiche : 12.02.15 DS Creazione modulo.
'
'
'----------------------------------------------------------------------------
Imports EgtUILib
Module ConstGen
' File con direttorio radice dei dati
Public Const DAT_FILE_NAME As String = "DataRoot.Ini"
Public Const S_DATA As String = "Data"
Public Const K_DATAROOT As String = "DataRoot"
' File con dati di licenza
Public Const LIC_FILE_NAME As String = "OmagVIEW.lic"
Public Const S_LICENCE As String = "Licence"
Public Const K_KEY As String = "Key"
' File di log generale
Public Const GENLOG_FILE_NAME As String = "OmagVIEWLog.txt"
' Sottodirettorio di configurazione
Public Const CONF_DIR As String = "Config"
' Sottodirettorio temporaneo
Public Const TEMP_DIR As String = "Temp"
' Sottodirettorio di default per le macchine
Public Const MACHINES_DFL_DIR As String = "Machines"
' Sottodirettorio di default per progetti
Public Const PROJ_DFL_DIR As String = "Data"
' Nome file corrente
Public Const CURR_PROJ_NAME As String = "CurrProj.nge"
Public Const CURR_PROJ_NEW As String = "CurrProj.new"
Public Const CURR_PROJ_LOCK As String = "CurrProj.lck"
Public Const CURR_PROJ_EPL As String = "CurrProj.epl"
Public Const CURR_PROJ_PPL As String = "CurrProj.ppl"
Public Const CURR_PROJ_CHANGE As String = "CurrProj.chg"
' Costanti per lavorazioni
Public Const MACH_GROUP As String = "Mach01"
Public Const MAIN_TAB As String = "MainTab"
Public Const SECOND_TAB As String = "2ndTab"
' Nome della superficie del grezzo
Public Const NAME_RAW_SOLID As String = "RawSolid"
' Nome della regione fuori kerf nel grezzo
Public Const NAME_OUTKERF_REG As String = "SheetOut"
' Nome della regione di riferimento nel grezzo
Public Const NAME_REF_REG As String = "RefReg"
' Contrassegno di progetto OmagCut
Public Const NAME_PROJMARK As String = "OmagCut"
' Info per indice progetto
Public Const INFO_PROJINDEX As String = "ProjIndex"
' Info per materiale progetto
Public Const INFO_PROJMAT As String = "ProjMat"
' Info con path carico progetto
Public Const INFO_LOADPATH As String = "LoadPath"
' Info per stato scarico progetto salvato
Public Const INFO_UNLOADSAVED As String = "UnloadSaved"
' Nome layer delle regioni
Public Const NAME_REGION As String = "Region"
' Nome layer preview
Public Const NAME_PREVIEW As String = "PV"
' Info per stato pezzo
Public Const INFO_PARTOK As String = "POK"
' Info in pezzo con path di Csv di provenienza
Public Const INFO_CSV_PATH As String = "CsvPath"
' Info in pezzo con suo nome in Csv
Public Const INFO_CSV_PART As String = "CsvPart"
' Info in pezzo con suo ordine in Csv
Public Const INFO_CSV_ORD As String = "CsvOrd"
' Info in pezzo con sua distinta in Csv
Public Const INFO_CSV_DIST As String = "CsvDist"
' Info in pezzo con suo materiale in Csv
Public Const INFO_CSV_MAT As String = "CsvMat"
' Info in pezzo con dimensione X in Csv
Public Const INFO_CSV_V1 As String = "V1"
' Info in pezzo con dimensione Y in Csv
Public Const INFO_CSV_V2 As String = "V2"
End Module