- letta modalita' simulazione macchina anche in plugin
- disabilitato sort su colonne lista porte - corretta riattivazione bottoni dopo calcolo - corretta acquisizione risultato da calcolo porta - corrette funzioni lua con parametro inutile - cambiato valori di avanzamento variabili porta in WP per scarico uguale a 2 - cambiata sorgente indice porta su disegnino - aggiunta lista porte a finestra di restart - aggiunta a finestra di restart lettura json del lua - aggiunta classe IdNameStruct
This commit is contained in:
@@ -554,9 +554,13 @@ Public Class ExecProcessManager
|
||||
If Results.Count >= 2 Then
|
||||
Dim nIndex As Integer = -1
|
||||
Dim nResult As Integer = -1
|
||||
Dim dResult As Integer = -1
|
||||
If Integer.TryParse(Results(1), nIndex) AndAlso nIndex >= 0 Then
|
||||
If Integer.TryParse(Results(2), nResult) AndAlso nResult >= 0 Then
|
||||
m_ThreadDataList(nIndex).SetProcResult(nResult)
|
||||
ElseIf StringToDouble(Results(2), dResult) AndAlso dResult >= 0 Then
|
||||
nResult = Math.Floor(dResult)
|
||||
m_ThreadDataList(nIndex).SetProcResult(nResult)
|
||||
End If
|
||||
m_ThreadDataList(nIndex).SetProcessStatus(ThreadData.ProcessStatuses.ANSWERRECEIVED)
|
||||
End If
|
||||
|
||||
Reference in New Issue
Block a user