OmagCUT :

- aggiunta gestione dati speciali lame per Hoffman in DB utensili.
This commit is contained in:
Dario Sassi
2019-05-26 19:00:07 +00:00
parent 9af856f50d
commit e04bdfb2d2
4 changed files with 140 additions and 14 deletions
+8
View File
@@ -67,6 +67,7 @@ Public Class CurrentMachine
Private m_nShowToolChanger As Integer = 0 ' 0=no, 1=tutti utensili, 2=solo lame
Private m_bShowHeadExit As Boolean = False
Private m_nShowUserNotes As Integer = 0 ' 0=no, 1=tutti utensili, 2=solo lame
Private m_nShowSpecials As Integer = 0 ' 0=no, 1=tutti utensili, 2=solo lame
' Flag che indicano presenza tipologia lavorazioni (attivo/non attivo)
Private m_bSawing As Boolean = False
@@ -376,6 +377,12 @@ Public Class CurrentMachine
End Get
End Property
Friend ReadOnly Property ShowSpecials As Integer
Get
Return m_nShowSpecials
End Get
End Property
Friend ReadOnly Property bSawing As Boolean
Get
Return m_bSawing
@@ -907,6 +914,7 @@ Public Class CurrentMachine
m_nShowToolChanger = GetPrivateProfileInt(S_TOOLS, K_SHOWTOOLCHANGER, 0, sMachIniFile)
m_bShowHeadExit = (GetPrivateProfileInt(S_TOOLS, K_SHOWHEADEXIT, 0, sMachIniFile) > 0)
m_nShowUserNotes = GetPrivateProfileInt(S_TOOLS, K_SHOWUSERNOTES, 0, sMachIniFile)
m_nShowSpecials = GetPrivateProfileInt(S_TOOLS, K_SHOWSPECIALS, 0, sMachIniFile)
' Leggo limiti diametro lama per altre operazioni
m_dMaxSawDiamForVac = GetPrivateProfileDouble(S_TOOLS, K_MAXSAWDIAMFORVAC, 630, sMachIniFile)
m_dMaxSawDiamForProbe = GetPrivateProfileDouble(S_TOOLS, K_MAXSAWDIAMFORPROBE, 630, sMachIniFile)