diff --git a/IntegrationEgaltech/Generator.cs b/IntegrationEgaltech/Generator.cs index 76c295c..172c17d 100644 --- a/IntegrationEgaltech/Generator.cs +++ b/IntegrationEgaltech/Generator.cs @@ -180,7 +180,8 @@ namespace ib.essetre.integration.egaltech int nLastErr = 0 ; string sLastMsg = "" ; int nTotTime = 0 ; - if ( File.Exists( Path.ChangeExtension( BtlPath, ".txt"))) { + if ( parameters.UIMode != InOutParameters.UIModes.SHOWUI && + File.Exists( Path.ChangeExtension( BtlPath, ".txt"))) { int nErr = 0 ; string sMsg = "" ; double dRot = 0 ; @@ -290,9 +291,9 @@ namespace ib.essetre.integration.egaltech } pattInfo.EstimatedTime = nTotTime ; - // Lettura OutputFilename e scrittura nel parametro stringa Iso (casi UIModes.HIDDEN e UIModes.SHOWUI) + // Lettura OutputFilename e scrittura nel parametro stringa Iso (caso UIModes.HIDDEN) if ( ! bErrors && - ( parameters.UIMode == InOutParameters.UIModes.HIDDEN || parameters.UIMode == InOutParameters.UIModes.SHOWUI)) { + parameters.UIMode == InOutParameters.UIModes.HIDDEN) { string CncPath = Path.ChangeExtension( BtlPath, ".cnc") ; if ( File.Exists( CncPath)) { diff --git a/IntegrationEgaltech/Properties/AssemblyInfo.cs b/IntegrationEgaltech/Properties/AssemblyInfo.cs index 5477b3d..409d682 100644 --- a/IntegrationEgaltech/Properties/AssemblyInfo.cs +++ b/IntegrationEgaltech/Properties/AssemblyInfo.cs @@ -36,5 +36,5 @@ using System.Runtime.InteropServices; // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build // usando l'asterisco '*' come illustrato di seguito: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.1.12.6")] -[assembly: AssemblyFileVersion("2.1.12.6")] +[assembly: AssemblyVersion("2.1.12.7")] +[assembly: AssemblyFileVersion("2.1.12.7")]