TestEIn 1.8h1 :

- corretto errore con massimo valore di progress(limitato a 100).
This commit is contained in:
Dario Sassi
2017-08-01 13:32:01 +00:00
parent 1865a04cd5
commit 21eb0fa2c9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -849,7 +849,7 @@ Public Class Form1
Public Function ProcessEvents(ByVal nProg As Integer, ByVal nPause As Integer) As Integer
' Se previsto, imposto progress
If nProg > 0 Then
tsStatusProgress.Value = nProg
tsStatusProgress.Value = Math.Min(nProg, 100)
End If
' Costringo ad aggiornare
Application.DoEvents()
+2 -2
View File
@@ -46,5 +46,5 @@ Imports System.Runtime.InteropServices
' utilizzando l'asterisco (*) come descritto di seguito:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.8.6.4")>
<Assembly: AssemblyFileVersion("1.8.6.4")>
<Assembly: AssemblyVersion("1.8.8.1")>
<Assembly: AssemblyFileVersion("1.8.8.1")>