A progress bar or progress window is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer. "Progress" is also the name of a development tool and database from Progress Software Corporation. The "progress-4gl", "progress-db" and ...
0
votes
1answer
181 views
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 ...
1
vote
0answers
144 views
HTML5 cache progress event
I'm developing a WebApp using HTML5+phoneGap this days.
I just want to know how to handling the callback of applicationCache.onprogress?
I want to tell the user how much network resources have been ...
0
votes
2answers
73 views
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
votes
1answer
249 views
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:
...
1
vote
2answers
2k views
Pass file from Javascript upload to PHP
I'm working on a script to let the user upload a file and sees a upload status and the file is then saved on the server.
The problem is that I cannot use the php api. So I was thinking to upload the ...
0
votes
2answers
807 views
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 ...
1
vote
2answers
208 views
Using BASH to display a progress (working) indicator
Using a bash only script, how can you provide a bash progress indicator?
So I can run a command form bash, and while that command is executing let the user know that something is still happening.
1
vote
1answer
46 views
How I can print 'process status' in Django?
In one of my views I have several steps and they use 5 or 7 minutes to finish totally, so I was wondering if there is a way to print the status of the view in the browser, like:
"Calculating ...
0
votes
1answer
730 views
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 ...
0
votes
1answer
183 views
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 ...
0
votes
1answer
306 views
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 ...
2
votes
3answers
995 views
Custom progress bar for <audio> and <progress> HTML5 elements
I am mind boggled at working out how to create a custom seekbar for an audio player using the tag and simple Javascript.
Current Code:
<script>
function play() {
...
0
votes
0answers
72 views
How to get compression progress using ICSharpCode.SharpZipLib
I have a problem reporting compression progress. I'm using ICSharpCode.SharpZipLib to compress a directory. Is there a algorithm to calculate the correct percentage of process of compression using ...
0
votes
1answer
467 views
C# uploading file with proggress tracking (HttpWebRequest POST with parameters)
I have method HttpUploadFile to upload image with some string parameters:
public static void HttpUploadFile(string url, string file, string paramName, string contentType, NameValueCollection nvc)
...
0
votes
3answers
143 views
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 ...
3
votes
1answer
965 views
PowerShell: Write-Progress for Progress on Multiple Scripts
My Research:
Okay, I have looked at dozens upon dozens of examples for Write-Progress and observed the following. Most of the time used in conjuction with a loop, usually "for" or "foreach". Most ...
2
votes
1answer
74 views
Is there a way of estimating progress of A* finding a path?
Finding a shortest path in a quite large graph may take a while. A long while in some cases even. From what I know about the algorithm it's impossible to tell exactly how many nodes A* needs to visit ...
2
votes
1answer
509 views
Java: Show the progress of a Progress Monitor and a Sub Progress Monitor
Hi implemented the IProgressMonitor and the SubProgressMonitor of the "org.eclipse.core.runtime". The progress monitor is working but my problem is it does not show the progress like I wanted it. It ...
1
vote
1answer
241 views
Django file upload progress get cache returns None
Django file upload progress process json request getting null response
view.py
def upload_progress(request):
"""
A view to report back on upload progress.
Return JSON object with ...
0
votes
1answer
660 views
Django File Upload Progress
I have used Django File Upload Progress process for getting progress but getting error pliks.upload" does not define a "UploadProgressCachedHandler" upload handler backend.
Steps i followed is
1) ...
0
votes
1answer
100 views
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 ...
3
votes
1answer
203 views
Monitor GZip Download Progress in Java
I download some files in my java app and implemented a download monitor dialog. But recently I compressed all the files with gzip and now the download monitor is kind of broken.
I open the file as a ...
0
votes
1answer
295 views
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 ...
8
votes
1answer
1k views
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
...
0
votes
1answer
100 views
Showing IMAPI2 Verification Progress?
I have successfully integrated IMAPI2 into my application. I can burn CD/DVDs without any problem. However, i can't showing IMPAI2 Verification Progress in My Application so the Application looks like ...
1
vote
1answer
360 views
Android MediaController seekbar not refreshing
I'm using a MediaController and MediaPlayer together, to create a simple audio player in Android, taken from an example I found here on this site.
However, after much search I could not find the ...
0
votes
1answer
552 views
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 ...
1
vote
2answers
155 views
Progress Download Dialog
How do you implement Progress Download Dialog based on the codes below? My codes downloads images from a specific URL then it saves the image file into SD Card and set the image as wallpaper. I want ...
1
vote
3answers
111 views
How to create progress bar from the start of Execwait function till the end of Execwait in NSIS?
How to create progress bar from the start of Execwait function till the end of Execwait in NSIS?
I have a custom page, In the leave function of custom page I am calling some other function and then I ...
0
votes
1answer
256 views
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 ...
1
vote
2answers
194 views
Linking a ABL table to a UltraWinGrid
I have created a table in OpenEdge using ABL. I'm now trying to display the table in a UltraWinGrid. I have been following the information found here:
...
0
votes
1answer
99 views
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 ...
0
votes
3answers
281 views
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 ...
0
votes
4answers
112 views
Percentage calculation when extracting zip file going over 100%!
I'm extracting a zip file and the problem is that the percentage calculation goes over 100% and reaches almost to 111%.. Here is the code:
boolean UNZipFiles() {
byte[] buffer = new ...
0
votes
0answers
55 views
getting the progess of an installer in c#
Ok, i've made a program that requires the Combined Community Codec Pack, and i've implemented the download into my winforms app. What i want to do is get the install progress from CCCP and display it ...
3
votes
3answers
668 views
PHP script to run in background with visible progress [duplicate]
Possible Duplicate:
Show progress for PHP long script
I have a PHP script that generates large PDF document on request. This usually takes about 1-2 minutes, and the only way it lets the ...
-2
votes
1answer
633 views
How can I make a jquery/css progression bar that reflects step by step form progression?
I see a lot of example progress bars that show the progression bar being filled up. However, I would just like to know how I could make a progress reflect step by step form progress. A good example of ...
0
votes
2answers
165 views
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 ...
0
votes
1answer
183 views
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 ...
1
vote
1answer
123 views
How to control the browser progress update in the download process?
I wrote a download script in PHP as specified below, my script is downloading the files correctly, but I am feeling that the browser(chrome) progress bar is not getting updated properly in regular ...
0
votes
0answers
58 views
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 Intent(Intent.ACTION_MAIN);
...
0
votes
1answer
161 views
Async Task with Media Player isn't Firing PublishProgress
I've written a AsyncTask:
public class AudioTransition extends AsyncTask <Void, Void, MediaPlayer>
{
private int goalID;
private int milliseconds;
private MediaPlayer tempPlayer;
...
0
votes
0answers
76 views
Add Progress bar on options menu
I'm trying to add a progress bar on options menu ( when the user clicks at one item on menu, I will execute in background one task, and while this operation is processed I want to show a progress bar ...
2
votes
1answer
174 views
Android Bitmap Decoding Progress
Hypothetical question: Let's say I want to decode a Bitmap from file/stream/anything using BitmapFactory. Is it possible to get the decoding progress (as integer)? I want to put the progress in a ...
0
votes
1answer
227 views
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 ...
1
vote
1answer
109 views
How to kill a progress in Android
when I tried to exit, I run the code below, but I can't kill the progress,
so if I restart my App, another progress started.what's the matter?
my exit code:
Intent startMain = new ...
2
votes
2answers
1k views
Android Progress dialog within listview
My app is designed as follows:
Main Activity uses action bars
First tab is a fragment that is split into 3 sections
| Linear Layout containing List view | |Linear Layout containing List View | ...
0
votes
1answer
334 views
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 ...
0
votes
0answers
149 views
ActionBarSherlock Indeterminate Progress as widget in main layout
The coolest Indeterminate Progress Bar that I have seen is the ActionBarSherlock Indeterminate Progress in the action bar. I want to use this progress in my main activity layout instead of the old ...
1
vote
1answer
123 views
UITextField like safari with progress
someone have the idea to make UITextField show Progress like safari(when loading ,there have blue progress in UITextField).