Search the Community
Showing results for tags 'progress bar'.
-
Hi All, I want to make my progress bar progress with the amount of File lines read. How would I do this correctly. So far the code below can sometimes run in the middle of the progress bar and state completed.. and other times it can run into the 200%. ;=============================...
- 3 replies
-
- loops
- progress bar
-
(and 3 more)
Tagged with:
-
Hi, Im new to autoit im exploring some function and I am interested with the progress bar. Is it possible to have a end user input in how much the bar will progress? I saw this code in the examples. Example() Func Example() ; Display a progress bar...
-
The below script is used by me before for copying files/folders with progress bar(windows default progress bar). I found similar option for moving by using same object. But not able to find for delete. dml.vbs (This is a vbscript one and I am posting in this forum because autoit is made on top of...
- 1 reply
-
- progress bar
- progress
-
(and 3 more)
Tagged with:
-
Hi, i've been scripting around a bit with autoit but i always had this problem that i find a bit stupid on my part: ~Can't stop a script execution during a rotine... "duh!" you may say else take a look at this sample script: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $m...
-
I have an application which delete folder and files specified by the user. Everthing workes fine but problem comes when the file/folder size is bigger(morethan 1GB). The GUI hangs when deleting large file/folder size. The idea is to have a progress bar with looping statement when deletion is in prog...
-
Hi guys, i have two question about Progress bar, I'm testing this code: ProgressOn("Progress Bar", "Sample progress bar", "Working...") For $i = 0 To 100 ProgressSet($i) Sleep(5) Next MyFunc() ProgressSet(100, "Done!") Sleep(750) ProgressOff() 1) Thi function does not work as expected, see...
-
I have been trying to do this for last 3 days but nothing seems to be working (correctly). What i am trying to do is extracting an iso image to my pendrive during which progress bar should show the process. The actual size of the archive size is not known but no significant difference is there after...