Overview
The ProgressBar control is used to show the progress of a process.
The bar has a minimum value, maximum value and the current value.
The bar displays the current value in relation to the minimum and maximum value.
Example:
'Add a ProgressBar named progressBar1.
Sub Globals
End Sub
Sub App_Start
Form1.Show
progressBar1.New1("Form1",10,10,200,30)
progressBar1.Value = 33
End Sub