MacGoose Posted February 20, 2014 Share Posted February 20, 2014 I have created a progress bar: $ctrlProgressComplete = GUICtrlCreateProgress( 15, 355, $windowWidth - 30, 20) And are using this to progress it: GUICtrlSetData($ctrlProgressComplete, ((1 / 8) * 100)) ... However, the progress of the progress bar is so slow that my real progress is finished before the progress bar is. The problem is most likely that the progress animation is asynchronous. The default style of a progress bar should be segmented, but it seems to be $PBS_SMOOTH as the animation IS very smooth and slow. How do I make this progress bar move fast and not slow? I want that segmented and fast progress bar that was before... Link to comment Share on other sites More sharing options...
Danyfirex Posted February 20, 2014 Share Posted February 20, 2014 (edited) Are you using windows 7? by default is $PBS_SMOOTH for more speed change this (1 / 8) * 100) Saludos Edited February 20, 2014 by Danyfirex Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
MacGoose Posted February 20, 2014 Author Share Posted February 20, 2014 Are you using windows 7? by default is $PBS_SMOOTH for more speed change this (1 / 8) * 100) Saludos Is there any way to change it to not be smooth? No need to get more speed by changing (1/8) * 100). What I need is slower code so the progress animation can catch up with the code, not more speed. The problem is that the animation is so slow that when the code is finished the progress animation is only 50% through. I would rather just remove the progress bar if this can't be fixed... Link to comment Share on other sites More sharing options...
BrewManNH Posted February 20, 2014 Share Posted February 20, 2014 Sounds to me as if you're not setting the progress bar position using a real percentage of the amount completed. Post a reproducer script that demonstrates how you're doing it and that shows it not working correctly. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
FireFox Posted February 20, 2014 Share Posted February 20, 2014 (edited) I think he means the progress bar is not instantaneous for changing its value. As you can see using the following example : GUICreate("MyGUI") $pb1 = GUICtrlCreateProgress(0, 0, 400, 26) GUISetState(@SW_SHOW) Sleep(200) GUICtrlSetData($pb1, 100) Sleep(1000) I don't know if it's possible to change this speed like the marquee. Br, FireFox. Edited February 20, 2014 by FireFox Link to comment Share on other sites More sharing options...
Danyfirex Posted February 20, 2014 Share Posted February 20, 2014 I think He is wrong with the percentage part as BrewManNH says, also He want Xp progressbar style. Saludos Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
BrewManNH Posted February 20, 2014 Share Posted February 20, 2014 When using Windows Vista and above, there is no XP style progress bar in the standard Window's API, you have to roll your own. Danyfirex 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
gritts Posted February 20, 2014 Share Posted February 20, 2014 You may have already received an answer to this but here is how I increment my progress bars... (An extract from one of my projects) ProgressOn("Progress Meter", "Server Info Collect", "Server Name: ",-1,-1,16) For $cnt = 1 To $aServerList[0] ProgressSet(Round((100 / $aServerList[0]) * $cnt), "Server: " & $aServerList[$cnt]) $srvIP = TCPNameToIP($aServerList[$cnt]) ConsoleWrite($aServerList[$cnt] & " " & $srvIP & @CRLF) ;Other code could go here. Value could also be incremented using something like $cnt += 1 in a different loop Next ProgressSet(100, "Server: ", "Completed") Sleep(500) ProgressOff() Link to comment Share on other sites More sharing options...
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