"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
19
votes
7 answers
I want a progress circle instead of progress dialog
I want to show a progress Circle in my app while loading data. I have an activity and moving from one activity to another I am parsing some xml data so for the time being until the parsing is completed I want to show a circular loading effect.

ta54
- 256
- 1
- 2
- 8
19
votes
4 answers
preload with percentage - javascript/jquery
I did a Google search and I cannot find a way to do a loading with percentage. Anyone know how I can find an example of that?
I need a preload for a website from 0-100 without bar, before show the content, but I cannot find any example.

anvd
- 3,997
- 19
- 65
- 126
19
votes
6 answers
Mediaplayer progress update to seekbar not smooth?
I am working on an app with recorder and player. I am using mediaplayer to play the recorded .wav file and meantime I want to update to a seekbar. Everything is working fine But my problem is mediaplayer progress updation to seekbar is not happening…

Sreedev
- 6,563
- 5
- 43
- 66
18
votes
6 answers
Backgroundworker won't report progress
I have a background worker running a long database task. i want to show the progress bar while the task is running. Somehow the background worker won't report the progress of the task.
This is what i have:
BackgroundWorker…

Angela
- 531
- 2
- 8
- 18
17
votes
2 answers
How is Progress different from Action?
I've been using Progress and wondered if it can be replaced by Action.
In the code below, using each of them for reporting progress, i.e. ReportWithProgress() or ReportWithAction(), didn't make any noticeable difference to me. How progressBar1…

dixhom
- 2,419
- 4
- 20
- 36
17
votes
4 answers
Can't grab progress on http POST file upload (Android)
I am developing an Android app which enables the user to upload a file to services like Twitpic and others.
The POST upload is done without any external libraries and works just fine. My only problem is, that I can't grab any progress because all…

Manuel
- 171
- 1
- 1
- 4
17
votes
10 answers
Update progressbar in each loop
I have a progress bar that I update in a loop of many iterations.
https://jsfiddle.net/k29qy0do/32/
(open the console before you click the start button)
var progressbar = {};
$(function () {
progressbar = {
/** initial progress */
…

reggie
- 3,523
- 14
- 62
- 97
17
votes
3 answers
How to measure download speed and progress using requests?
I am using requests to download files, but for large files I need to check the size of the file on disk every time because I can't display the progress in percentage and I would also like to know the download speed. How can I go about doing it ?…

Mayank Kumar
- 1,133
- 3
- 13
- 20
16
votes
7 answers
Uploading HTTP progress tracking
I've got WPF application I'm writing that posts files to one of social networks.
Upload itself working just fine, but I'd like to provide some indication of how far along I am with the uploading.
I tried a bunch of ways to do this:
1)…

Lumen
- 163
- 1
- 1
- 5
16
votes
5 answers
Extract ZipFile using Python, display Progress Percentage?
I know how to extract a zip archive using Python, but how exactly do I display the progress of that extraction in a percentage?

Zac Brown
- 5,905
- 19
- 59
- 107
16
votes
2 answers
How to display upload progress using C# HttpClient PostAsync
A am creating a file upload app for Android and iOS using Xamarin PCL and i have managed to implement file upload and some sort of progress bar, but it is not working properly.
I saw some answers on stack overflow for displaying download progress,…

Artūrs Eimanis
- 578
- 3
- 5
- 22
16
votes
1 answer
JQuery Deferred. Using $.when and .progress()
I am writing a parser littered with Async Tasks. I use JQuery promises to control and order the async tasks. This is a psuedo code version of the constructor function:
/**
* @constructor
*/
function Parser(json)
{
…

Jon Wells
- 4,191
- 9
- 40
- 69
15
votes
8 answers
Best way to calculate ETA of an operation?
I am looking for the best way to calculate ETA of an operation (IE: file download) using a linear progress information.
Lets say that I have the following method that gets called:
void ReportProgress(double position, double total)
{
...
}
I…

Maghis
- 1,093
- 1
- 7
- 15
15
votes
3 answers
ability to get the progress on a Future object
With reference to the java.util.concurrent package and the Future interface I notice (unless I am mistaken) that the ability to start a lengthy tasks and be able to query on the progress only comes with the SwingWorker implementing class.
This begs…

Marcus Junius Brutus
- 26,087
- 41
- 189
- 331
14
votes
1 answer
Changing Progress Dialog Message While Running
I've got a fairly simple issue I'm not sure how to resolve. I want to change the message text of a Progress Dialog while it's running and showing. An example of this would be something like a "time remaining" counter that would count down while the…

Brian
- 7,955
- 16
- 66
- 107