Is it possible sincronize the progress bar with the behaviour of one specific process, to have an idea of the remaning time to the end of that process?
For example I have found only this code, but it is useless because the process (that I launch with the button) finish before that the progress bar arrive to the max.
Button event:
Timer1.enabled = true
If ProgressBar1.Value < 100 Then
ProgressBar1.Value += 1
ElseIf ProgressBar1.Value = ProgressBar1.Maximum Then
Timer1.Stop()
MsgBox("finish")
End If