"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
Android receiving chunked JSON response
I have situation where I need to receive a constant chunked JSON response, each time I receive a response I need to parse the JSON to update the UI on the current status of the operation.
I can't find a straight forward method of received each…

NathofGod
- 479
- 5
- 12
0
votes
1 answer
WebClient.DownloadProgressChanged not working?
I am using Windows Phone to download a file with a WebClient. The DownloadProgressChanged event does not work. It fires only once, returning a value of "4923206" for DownloadProgressChangedEventArgs.BytesRecieved. My code is:
private void…

msbg
- 4,852
- 11
- 44
- 73
0
votes
3 answers
How to display a loop's progress without pausing the loop?
I have a for loop (running in its own thread) in which I'm calculating the loop's progress and I want to display the progress value every time it changes, but I want to run the message display command outside the loop, so it doesn't pause the…

IneedHelp
- 1,630
- 1
- 27
- 58
0
votes
1 answer
Using high-definition progress circle in tablet
I'm developing android app. In my GALAXY Tab 10.1 shows low-definition progress circle. However, my cell phone GALAXY Nexus shows high-definition progress circle.
At first, GALAXY Nexus also shows low-definition progress circle. So, I tried to…

user1560987
- 71
- 1
- 2
0
votes
1 answer
How do display a progress spinner in a Dojo FilteringSelect?
I have a Dojo FilteringSelect that takes about 20 seconds to load its values from the dB when the user clicks the arrow in the list box. I'd like to display a progress spinner while waiting for the data to be returned from the dB. Any ideas what…

Karl
- 149
- 3
- 14
0
votes
2 answers
HTML5 progress tag in WebKit not working?
I need to display operation system native progress bar in (html5) web page.
I have progress tag in following html file
< progress value="22" max="100" />
It works great in Safari 6.0 OSX Lion 10.7.4, but it doesn't in WebKit's WebView..
The rest of…

user1606461
- 1
- 1
- 1
0
votes
1 answer
ASIHTTPRequest does not update progress
update
I think the problem is with the networkQueue. When I replace [self.networkQueue addOperation:request] with [request startAsynchronous] or [request startSynchronous], it works.
I update the code to make it more clear.
original
I use…

ThinkChris
- 1,169
- 2
- 15
- 38
0
votes
1 answer
How to Achieve Horizontal Page Height Progress?
I was recently asked how to create a horizontal page height progress bar with jQuery, similar to the one here: http://www.piccsy.com/investors/ . I've looked around and have been unable to find anything, both through Google searches and the old…

bitandbang
- 51
- 7
0
votes
3 answers
Please wait screen appearing after the login button
I am trying to implement a "Wait Screen" in my BlackBerry app. The screen is to appear when the user clicks "Login" and it should go away after login has successfully been made. I am calling the screen in the "Login" listener after which I call a…

Sarah
- 1,895
- 2
- 21
- 39
0
votes
2 answers
Progress Bar Flickering in Android Application
I am attempting to make a streaming music player, but am having a bit of trouble with the SeekBar I am trying to implement. Currently, it acts correctly on the first song played. I can seek correctly and it updates itself in another thread. The…

tkosanke
- 1
- 1
0
votes
1 answer
C# Ftp DownloadFiles Progress
I downloaded ftp.dll and I'm using it. I used that code :
ftp.DownloadFiles(Properties.Settings.Default.update_ver,
Application.StartupPath,
new RemoteSearchOptions("*.*", true));
But I want use progress bar which shows progress of download.
There…

WalkerJetBat
- 11
- 3
0
votes
0 answers
I can't stop my progress because of some running thread?
Last week, I asked a question about how to finish my progress entirely,someone tell me to do it like this:
finish();
Intent intent = new…

Stilo
- 23
- 2
0
votes
1 answer
Async Task with Media Player isn't Firing PublishProgress
I've written a AsyncTask:
public class AudioTransition extends AsyncTask
{
private int goalID;
private int milliseconds;
private MediaPlayer tempPlayer;
AudioTransition(int ID, int Milliseconds)
{
…

Nathan Tornquist
- 6,468
- 10
- 47
- 72
0
votes
1 answer
ASIHTTPRequet Progress Bar in another View
So, I created a singleton class for my ASIHTTPRequest and a network queue. It downloads the file in the background with no problem. However, because I'm initiating the download from one view, and then the user has the option to change tabs to view…

user580340
- 141
- 1
- 5
0
votes
1 answer
Download Image Progress Bar, PHP, Javascript, HTML
I am creating a speed test application which measures a users upload and download speed by timing how long it takes to upload and download various files. At the moment I am using Javascript to download an image from an external server using the…

user1357607
- 214
- 4
- 13