0f6179bcd1
- salvataggio progetto dopo verifica - aggiunti controlli in caso di risultati calc con Id sbagliati - correzione messaggio di fine nesting solo su materiali utilizzati - corretto errore import/export se progetto assemblato - reset degli stati di calc sia in proj che prod in importazione progetto
37 lines
697 B
VB.net
37 lines
697 B
VB.net
Public Class CalcEndEventArgs
|
|
Inherits EventArgs
|
|
|
|
Public Enum Results As Integer
|
|
NULL = 0
|
|
OK = 1
|
|
ERROR_ = 2
|
|
EDIT = 3
|
|
End Enum
|
|
|
|
Public m_End As Results
|
|
Public Property End_ As Results
|
|
Get
|
|
Return m_End
|
|
End Get
|
|
Private Set(value As Results)
|
|
m_End = value
|
|
End Set
|
|
End Property
|
|
|
|
Public m_CmdType As CmdTypes
|
|
Public Property CmdType As CmdTypes
|
|
Get
|
|
Return m_CmdType
|
|
End Get
|
|
Private Set(value As CmdTypes)
|
|
m_CmdType = value
|
|
End Set
|
|
End Property
|
|
|
|
Sub New(CmdType As CmdTypes, Result As Results)
|
|
m_CmdType = CmdType
|
|
m_End = Result
|
|
End Sub
|
|
|
|
End Class
|