Gui Posted November 21, 2009 Posted November 21, 2009 Aye guys, I have a progress bar inside a gui, and according to a loop, I want it to update periodically. The loop statement is like this. For $x = 0 To $l -1 ; stuff that it does goes here... ; I want the progress bar to update periodically according to the $x and $l. GUICtrlSetData($progressbar,$x out of $i) ; kind of like that. The progress bar will update according to the $x and $l. (ex. $x out of $l completed.) Next So if you know how, please help me out ! Thanks. GUI.
Mat Posted November 21, 2009 Posted November 21, 2009 GUICtrlSetData ($progressbar, $x / $l * 100) Mat AutoIt Project Listing
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