Progress Bar Sample

From AutoIt Wiki
Revision as of 13:33, 17 November 2012 by IEvKI3gv9Wrkd41u (talk | contribs) (BrokenLinks: Samples, ...)
(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()