MerkurAlex Posted August 13, 2008 Posted August 13, 2008 Why can't i find this anywhere in the help file! Anyone know how to make a progressbar without any border/edge? [quote name='PsaltyDS' post='635433' date='Jan 27 2009, 07:04 AM']Larry is a mass murderer?! It's always the quiet, clean cut, bald guys... [/quote]
Datenshi Posted August 13, 2008 Posted August 13, 2008 Why can't i find this anywhere in the help file!Anyone know how to make a progressbar without any border/edge?I tried to do this but i dont think its even possible atm RapidQueuer 2.4 - For Rapidshare.comOpensubtitles Hashing FuncRevision3 PlayerGTPlayer BetaIMDB & Poster Grabber v1.3Fetgrek.com - My Website
Malkey Posted August 13, 2008 Posted August 13, 2008 Why can't i find this anywhere in the help file! Anyone know how to make a progressbar without any border/edge?Look up ProgressOn() in Help file Try ProgressOn("Progress Meter", "Increments every second", "0 percent", -1, -1, 1) For $i = 10 To 100 Step 10 Sleep(1000) ProgressSet($i, $i & " percent") Next ProgressSet(100, "Done", "Complete") Sleep(500) ProgressOff() From help example modified.
MerkurAlex Posted August 13, 2008 Author Posted August 13, 2008 Look up ProgressOn() in Help file Try ProgressOn("Progress Meter", "Increments every second", "0 percent", -1, -1, 1) For $i = 10 To 100 Step 10 Sleep(1000) ProgressSet($i, $i & " percent") Next ProgressSet(100, "Done", "Complete") Sleep(500) ProgressOff() From help example modified.*cough* GUICtrlCreateProgress *cough* im not using progresson.... [quote name='PsaltyDS' post='635433' date='Jan 27 2009, 07:04 AM']Larry is a mass murderer?! It's always the quiet, clean cut, bald guys... [/quote]
MerkurAlex Posted August 13, 2008 Author Posted August 13, 2008 BUMP [quote name='PsaltyDS' post='635433' date='Jan 27 2009, 07:04 AM']Larry is a mass murderer?! It's always the quiet, clean cut, bald guys... [/quote]
wraithdu Posted August 14, 2008 Posted August 14, 2008 Basic example - #include <GuiConstantsEx.au3> #include <WindowsConstants.au3> $gui = GUICreate("", 200, 20, -1, -1, $WS_POPUP) $prog = GUICtrlCreateProgress(0, 0, 200, 20) GUISetState() For $i = 0 To 100 Step 10 GUICtrlSetData($prog, $i) Sleep(250) Next Sleep(1000) Exit Thanks for mentioning GuiCtrlCreateProgress
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