TestEIn 1.8h1 :
- corretto errore con massimo valore di progress(limitato a 100).
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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")>
|
||||
|
||||
Reference in New Issue
Block a user