Progress Bar Sample

From AutoIt Wiki
Revision as of 23:17, 6 May 2009 by Flarn2006 (talk | contribs) (Created article.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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()