Progress Bar Sample: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
(Created article.)
(No difference)

Revision as of 23:17, 6 May 2009

Back to Samples

Illustrates:

ProgressOn("Progress Bar", "Sample progress bar", "Working...")

For $i = 0 To 100
	ProgressSet($i)
	Sleep(5)
Next

ProgressSet(100, "Done!")
Sleep(750)
ProgressOff()