Progress Bar Sample
Jump to navigation
Jump to search
Back to Samples
Illustrates:
- Usage of ProgressOn, ProgressSet, and ProgressOff functions.
- Uses Sleep as well, although that is not the main focus.
ProgressOn("Progress Bar", "Sample progress bar", "Working...")
For $i = 0 To 100
ProgressSet($i)
Sleep(5)
Next
ProgressSet(100, "Done!")
Sleep(750)
ProgressOff()