Files
EgtCAM5/Constants/ConstMsg.vb
T
Emmanuele Sassi 27233be859 EgtCAM5 :
- Correzzioni e miglioramenti parametri di lavorazione.
- Per la visibilità dei parametri ora sia MachiningDb che MachiningOp fanno riferimento agli stessi vettori.
- Correzione smarcatura ultima lavorazione selezionata quando si passa alla simulazione.
- Aggiunto reset automatico della nuova lavorazione se mentre la creo passo in simulazione o in Draw.
- Migliorata ListBox per MachGroup.
- Disabilitato cambio macchina quando in modalità lavorazione.
- Aggiunta possibilità di cancellare le operazioni con il tasto Canc della tastiera.
2016-10-05 18:16:09 +00:00

25 lines
1.2 KiB
VB.net

Module ConstMsg
'Public Const MSG_MISSINGKEYWD As Integer = 10100
'Public Const MSG_NUMERICKEYBOARDWD As Integer = 10200
Public Const MSG_EGTCAM5 As Integer = 5000
Public Const MSG_MAINWINDOW As Integer = MSG_EGTCAM5
Public Const MSG_TOPCOMMANDBAR As Integer = MSG_EGTCAM5 + 100
Public Const MSG_DRAWPANEL As Integer = MSG_EGTCAM5 + 200
Public Const MSG_GRIDVIEWPANEL As Integer = MSG_EGTCAM5 + 250
Public Const MSG_SIMULATION As Integer = MSG_EGTCAM5 + 300
Public Const MSG_OPERATION As Integer = MSG_EGTCAM5 + 400
Public Const MSG_DISPOSITION As Integer = MSG_EGTCAM5 + 430
Public Const MSG_DISPOSITIONERRORS As Integer = MSG_EGTCAM5 + 460
Public Const MSG_MACHGROUP As Integer = MSG_EGTCAM5 + 500
Public Const MSG_TOOLSDBPAGE As Integer = MSG_EGTCAM5 + 1000
Public Const MSG_TOOLSERRORS As Integer = MSG_EGTCAM5 + 1100
Public Const MSG_MACHININGSDBPAGE As Integer = MSG_EGTCAM5 + 1200
Public Const MSG_MACHININGSERRORS As Integer = MSG_EGTCAM5 + 1350
Public Const MSG_DOORS As Integer = MSG_EGTCAM5 + 3000
Public Const MSG_DOORSERRORS As Integer = MSG_EGTCAM5 + 3100
Public Const MSG_MISSINGKEYWD As Integer = 10100
End Module