"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
0
votes
1 answer
Why the upload progress become 0%?
My program needs to upload some data to the server and I use percentage to show the progress in a UIAlertView. When the program starts uploading, for example, the progress is 10%. I put the program into background and it continued uploading. When I…

Fantasy
- 251
- 1
- 2
- 6
0
votes
1 answer
Amazon S3 Java Download Hangs on Last File
I'm having trouble with the Amazon S3 download hanging after the last file completes its download, "locking" the file from being deleted as it is "in use" still by the java app, otherwise they work fine. Additionally, the progress doesn't appear to…

DGolberg
- 2,109
- 4
- 23
- 31
0
votes
1 answer
C# print preview gets closed when you close another form
I'm showing a print preview window for some large pages. The rendering of these takes some time so I want to show more progress information than the default 'Page 1/1' message.
I created a simple windows form project that shows my current…

Sunib
- 304
- 2
- 14
0
votes
2 answers
How create progress bar while file transferring
import java.awt.Component;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import…

Alex Mikki
- 9
- 1
- 4
0
votes
1 answer
android : progress indicator for image loading
I am using the below algorithm for downloading and caching images. It is working good. Initial loading of an image takes time as expected. I want show a progress indication to show this. I want the progress indicator to come only in the image view…

png
- 4,368
- 7
- 69
- 118
0
votes
1 answer
Showing a dialog without freezing the UI
My current progress dialog freezes the UI, I mean, I can't use the app while the dialog is showing, I cannot move, or click any button. Is it possible to show a dialog without it takes any focus?(So I could click buttons in the current activity).

idish
- 3,190
- 12
- 53
- 85
0
votes
1 answer
Concurrency issue when updating Wordpress metadata via ajax
Here's the scenario: I'm building a Wordpress plugin to manage some survey research that I'm involved in. The project admin is able to upload a csv file from the WP admin interface. On the client side, when the file is uploaded it goes through…

morphatic
- 7,677
- 4
- 47
- 61
0
votes
1 answer
ASIHttpRequest setProgress: called only with a value of 0.0 and 1.0
I was woking on YouTube Resumable Uploads
The progress jumps from 0 to 1 with ASIHTTPRequest.
Here is my code :
-(void)uploadVideoFile:(NSDictionary *) params
{
if(_location && _location.length != 0)
{
NSURL *url = [NSURL…

Patrick
- 262
- 3
- 12
0
votes
1 answer
How to track sent WebServices response progress
I am using HTTPClient on my client app to send a GET request to my Jersey RESTful web service.
what is the best way to track how many bytes have been received on the server side? should I make a web service call within my while loop below to…

user1518485
- 65
- 3
- 8
0
votes
0 answers
HTTP PUT method how to track the upload progress
I am using HTTP PUT method to upload the video file with ASIHttpRequest, but the progress tracking is not working. The following methods only called 2 times (started and finished).
- (void)setProgress:(float)newProgress;
If it is POST upload, it…

Patrick
- 262
- 3
- 12
0
votes
1 answer
android show spinning progress dialog until activity finishs
I'm trying to show a spinning progress dialog until my activity calls the method finish(). I call progressDialog.show() right before I call finish(). I can see the spinner, but it is not spinning...any suggestions?
I tried to put the finish() and…

tobi_b
- 1,218
- 1
- 12
- 21
0
votes
2 answers
Print the percentage during a transfer
This code is a portion of a FTP client that I have developed:
for(size_to_receive = file_size; size_to_receive > 0;){
nread = read(f_sockd, filebuffer, size_to_receive);
if(nread < 0){
perror("read error on retr");
close(fd);
…

polslinux
- 1,739
- 9
- 34
- 73
0
votes
1 answer
Thin progress bar
Basically what I want is a simple progressbar with a custom layout to be just a 2dp - 3dp thin line, used to show some progress (RAM used), something like this one:
http://www.uiparade.com/portfolio/dark-progress-loader/#
Could someone recommend me…

Jesus David Gulfo Agudelo
- 175
- 1
- 2
- 10
0
votes
1 answer
how to create a progress bar using php output buffering and jquery?
how to create a progress bar using php output buffering and jquery?
i been searching this for weeks,
i am desperate to learn this, this is a very big help for me, is someone the here share some codes?
i know the this will need to script.
i have…

avien
- 177
- 5
- 14
0
votes
1 answer
NSURLConnection Download Progress
I am trying to show the progress of a download from an API, but NSURLConnectionDelegate does not have a total bytes value anywhere. Is there some way to get the total amount of bytes that I am downloading before it finishes the download?

RileyE
- 10,874
- 13
- 63
- 106