PcExpert Posted February 3, 2006 Posted February 3, 2006 Hello, How to create a progessbar that makes progress when the next program is started?
Valuater Posted February 3, 2006 Posted February 3, 2006 Hello, How to create a progessbar that makes progress when the next program is started? maybe Dim $Program[11] $Program[1] = "Notepad.exe" ; add 9 more programs here ProgressOn("Progress Meter", "Increments with every file", "0 percent") For $i = 10 to 100 step 10 sleep(1000) ProgressSet( $i, $i & " percent") Run($Program[$i]) Next ProgressSet(100 , "Done", "Complete") sleep(500) ProgressOff() 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now