"Progress" is the name of a development tool and database from Progress Software Corporation. The "progress-4gl", "progress-db" and "openedge" tags are more specific to that environment.
Questions tagged [progress]
1522 questions
568
votes
31 answers
Text progress bar in terminal with block characters
I wrote a simple console app to upload and download files from an FTP server using the ftplib.
I would like the app to show some visualization of its download/upload progress for the user; each time a data chunk is downloaded, I would like it to…

bobber205
- 12,948
- 27
- 74
- 100
148
votes
8 answers
CSS Progress Circle
I have searched this website to find progress bars, but the ones I have been able to found show animated circles that go to the full 100%.
I would like it to stop at certain percentages like in the screenshot below. Is there any way I can do that…

Adam GunShy Said
- 1,497
- 2
- 10
- 3
114
votes
6 answers
Animate drawing of a circle
I'm looking for a way to animate the drawing of a circle. I have been able to create the circle, but it draws it all together.
Here is my CircleView class:
import UIKit
class CircleView: UIView {
override init(frame: CGRect) {
…

Roi Mulia
- 5,626
- 11
- 54
- 105
104
votes
11 answers
Progress bar in console application
I'm writing a simple c# console app that uploads files to sftp server. However, the amount of files are large. I would like to display either percentage of files uploaded or just the number of files upload already from the total number of files to…

smr5
- 2,593
- 6
- 39
- 66
93
votes
24 answers
How to create a spinning command line cursor?
Is there a way to print a spinning cursor in a terminal using Python?

Nathan
- 4,545
- 6
- 32
- 49
90
votes
12 answers
Progress during large file copy (Copy-Item & Write-Progress?)
Is there any way to copy a really large file (from one server to another) in PowerShell AND display its progress?
There are solutions out there to use Write-Progress in conjunction with looping to copy many files and display progress. However I…

Jason Jarrett
- 3,857
- 1
- 27
- 28
89
votes
2 answers
Hide progress of Invoke-WebRequest
How can I hide the progress display of Invoke-WebRequest? I do a lot of successive requests and have my own Write-Progress display that I use, so I don't need the built-in one popping up underneath it every time.
I use the mshtml results (the IE COM…

qJake
- 16,821
- 17
- 83
- 135
79
votes
12 answers
Using Bash to display a progress indicator (spinner)
Using a bash only script, how can you provide a bash progress indicator?
For example, when I run a command from bash - while that command is executing - let the user know that something is still happening.

Pez Cuckow
- 14,048
- 16
- 80
- 130
57
votes
7 answers
JavaScript loading progress of an image
Is there a way in JS to get the progress of a loading image while the image is being loaded?
I want to use the new Progress tag of HTML5 to show the progress of loading images.
I wish there was something like:
var someImage = new…

Light
- 1,647
- 3
- 22
- 39
52
votes
2 answers
Is there any way to show progress on a `gunzip < database.sql.gz | mysql ...` process?
Once a week I need to run a giant database update into my local development environment like so:
$ gunzip < /path/to/database1.sql.gz | mysql -uUSER -p database1 &
$ gunzip < /path/to/database2.sql.gz | mysql -uUSER -p database2 &
$ gunzip <…

Ryan
- 14,682
- 32
- 106
- 179
49
votes
16 answers
Android ExoPlayer onProgressChanged
How can I monitor progress changes on ExoPlayer?
I tried to implement a hidden MediaController and overriding setOnSeekBarChangeListener methods, but for now without success. I'm wondering if there is another way to listen to the ExoPlayer progress.

ascallonisi
- 871
- 1
- 11
- 20
40
votes
5 answers
Update Label while processing in Windows Forms
What is the best way to update a label on a Windows Forms application while processing?
I have a loop that does some processing to files on the user's system when the user clicks a button.
foreach (System.IO.FileInfo f in dir.GetFiles("*.txt"))
{
…

Picflight
- 3,832
- 13
- 61
- 90
40
votes
6 answers
Get download progress in Node.js with request
I'm creating an updater that downloads application files using the Node module request. How can I use chunk.length to estimate the remaining file size? Here's part of my code:
var file_url = 'http://foo.com/bar.zip';
var out =…

Jack Guy
- 8,346
- 8
- 55
- 86
38
votes
3 answers
Show spinning wheel dialog while loading data on Android
I want to show a spinning wheel dialog while my app loads some data:
The spinning wheel dialog should show on a button click. I’m using the code below but it does now show the spinning wheel. What could be the problem?
public void…

Kris
- 3,709
- 15
- 50
- 66
35
votes
9 answers
Android Back Button and Progress Dialog
I have an AsyncTask that shows a progressDialog whilst working (it calls runOnUiThread from within doInBackground to show the progress dialog).
Whilst its running I want to allow the use of the back button to cancel the operation; someone else has…

jwbensley
- 10,534
- 19
- 75
- 93