Progress Bar Sample: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
 (Created article.)  | 
			
(No difference) 
 | 
Revision as of 23:17, 6 May 2009
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()