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 ...
1
vote
1answer
73 views
How to show progress in the System Tray
I am trying to display progress in the system tray. I use this:
ProgressIndicator pi = new ProgressIndicator();
SystemTray.ProgressIndicator = pi;
...
2
votes
1answer
74 views
JS ProgressEvent is only fired when finished
I am having some problems getting my upload progress bar to work properly.
According to the XMLHttpRequest Level 2 specs, I attached event listeners for loadstart and progress like this:
var xhr = ...
4
votes
2answers
83 views
How to learn WriteAllBytes progress
Can I use a progress bar to show the progress of
File.WriteAllBytes(file, array)
in C#?
1
vote
1answer
135 views
VB.NET DownloadFileAsync fires completion event but doesn't download
I'm trying to download a .zip file to make an auto-updater for my game. It needs to show progress. I followed an online tutorial and got this chunk of code for the actual downloader:
Dim ...
0
votes
1answer
38 views
Progress codpage export data to sql via dtsx
In our Progress (V9.1B) the codepage used is ibm8858-1. On a unix sco machine.
In Progress I dump data as follows :
export stream strA to /u/usr/ppd/tesk.txt convert target "1252".
for each tab1 ...
0
votes
0answers
76 views
How to save in-game progress with Core Data
So I created a 2d game like Plants vs Zombies and I am using Core Data to save my game files. I want to figure out a way to save the in game progress like Plant vs Zombies. Here's a screen shot Plants ...
0
votes
0answers
44 views
Multiple Activity Issue
I have 4 activities: changeView, changeViewTwo, NoRunning, YesRunning.
Also, I have 2 XML: yes_running and no_running
The first screen (no_running), has a button that changes the view like this:
...
1
vote
0answers
96 views
Display progress and subprogress bars in Eclipse RCP
I have some Eclipse RCP code that allows the user to load multiple files, taking a few minutes each. I'm using a ProgressMonitorDialog to show progress as each file is loaded (one tick per file). ...
0
votes
2answers
58 views
Python script progress email
I have a Python script that loops through a list of 8 different machines and does a copy, execute, and test. I would like to receive an email after each loop. **I'm not sure what to google for this. I ...
0
votes
3answers
166 views
in a bash script that uses zenity --progress progress bar reading from a pipe, how to safely kill the piped process?
I am displaying a command progress in a bash script. The command output is piped to zenity --progress and can eventually run for a long time. I want to abort it (kill that command) if I cancel the ...
0
votes
1answer
68 views
Upload progress in lighttpd no response
I am trying to get the uploadprogress module for lighttpd 1.5 to work, but i am running into a strange problem:
When i start the upload "/response" is getting called every second with the ...
0
votes
0answers
57 views
Is there connection limit of NSURLConnection in Mac Cocoa Application?
I am trying to build a multiple-connection based and continuous download module with Objective-C.
I set up a new NSThread to handle events(such as connection:didReceivedData:) of NSURLConnection. but ...
0
votes
1answer
127 views
HTML/CSS progress bar controlled by Joomla Session Variable ( expiration date)
I am trying to use the progress bar to display how long a user has left in a subscription. I've looked around quite a bit but cannot find a way to use a date to control the css %
...
1
vote
2answers
32 views
Maven, displaying unit test currently running
My company has recently switched to maven, and the transition was very smooth, but there is one this that annoys me.
So earlier, in pre-maven era you could see which test is current class is being run ...
0
votes
0answers
80 views
Magento checkout working except for progress boxes
I have recently been having problems with Magento's one page checkout system.
At the moment it is working in a basic way, but the progress steps which are normally displayed on the right hand side ...
0
votes
1answer
45 views
Android bulkInsert Progress Values?
I am using the Content Resolver's bulkInsert Method to speed up insertion in an AsyncTask, its working great but i wanted to update the ProgressDialog's value in publishProgress.
Is this possible in ...
0
votes
3answers
235 views
Android custom progress indicator while doing AsyncTask
When running an AsyncTask I want to display a progress indicator. This stock one is ugly so I made a layout with my own. There lies the problem however, it's a separate layout meaning I need a new ...
0
votes
0answers
66 views
show sftp progress
I have searched a few and read the manpage of sftp, but no clue.
I want to monitor the progress of the sftp, how many bytes transferred during the interval.
Can you help me with this ?
I thought to ...
0
votes
2answers
226 views
Android Progress Dialog isnt in the center but bottom
I've searched everywhere, and nothing found!
I need to set the position of my progressDialog in the center horizontal and vertical.
But when i compile my code by command line (i dont use eclipse) an ...
0
votes
1answer
138 views
HTML5 Progress Element Scripting
I'm trying to display a HTML5 progress element to show the download progress of a large image file.
I've checked a few answers to similar questions already posted on this forum but they don't seem to ...
0
votes
2answers
305 views
How to make PHP form for uploading images with progress bar and showing pictures when they're uploaded?
I made uploading script for PHP but the problem is that I would need to make progress bar which shows how much of the picture is uploaded and also when uploading is done I would need to show thumbnail ...
0
votes
1answer
14 views
how to Appserver catch inf from progress
I'm searching where ASBMAN or ProgressExplorerTools catches this information, in order to build some tiny application toraise alert, charge info for historical issues, and so on
0
votes
1answer
318 views
MVC3 Async jQuery progress bar on a insert query
So I am trying to add an async progress bar on a really slow and long query that inserts a bunch of rows to a database. My implementation is based off this example: ...
0
votes
1answer
273 views
PHP: How to use session on one page while another page with sesson is loading
I am using CURL to download a large file from an external url and save it on my server.
This can take up to few minutes.
While the download is running I'm using the curl_setopt($ch, ...
0
votes
1answer
49 views
On PHP Server, how to get final search page content after a long wait?
I searched a lot of places, but couldn't find solution.
What I want to do is:
submit a form on PHP server to another server, the request is to search some results back;
The search will take several ...
0
votes
0answers
60 views
Python using a bouncing progress bar when the length of the loop is unknown
I have a file in in *.las format open with Liblas.
from liblas import file as lasfile
infile = "C:\\myfile.las"
for p in lasfile.File(inFile,None,'r'):
#do something
I wish to add a ...
1
vote
2answers
50 views
Reporting RPC call progress
I am developing an API server using the ServiceStack library on .NET 3.5 (a new experience for me), designed to be accessed by a Windows Forms thick client application. When the user clicks a button ...
0
votes
1answer
138 views
Reporting from Background Thread Using IProgress<T>
All, I have an expensive task which I undertake using the async/await keywords under .NET4.5. I report progress from the background thread via the Progress<T> class.
The object I pass into ...
0
votes
0answers
53 views
Start CABasicAnimation while another is in progress
I have an UIView, which I want to tilt depending on where the finger of the user is located on it. I'm doing this with CABasicAnimation and the animation and so on themselves work fine, however, when ...
0
votes
0answers
104 views
Nginx Http Upload Progress Module: Hide X-Progress-ID in URL
I'm using Nginx Http Upload Progress Module(http://wiki.nginx.org/HttpUploadProgressModule) for my video upload page(upload.php). Everything works fine, but after the video uploaded successfully, the ...
0
votes
2answers
626 views
HTML Progress Bar
I am new to HTML so dont get mad at me:). How would I add a progress bar to my website, that looks like the one on this website?
Progress Example
It looks like the Apple one! Thanks so much for your ...
1
vote
2answers
79 views
Does IProgress<T> Wait/Block Whilst Updating the UI
All, I have a method that calls IProgress<T>.Report(); to update my UI and make a relevent data selection. The background thread subsequently picks up the current selection (on the UI) through ...
-2
votes
1answer
275 views
How to create progress update control programatically in c# non visual web part in Sharepoint
How can I create progress update control programmatically in a c# non visual web part in Sharepoint?
I am using c# and the goal is to creates a text of "Loading..." inside the ProgressUpdate control ...
0
votes
1answer
607 views
jQuery Slider - Progress Bar
Similar to: Jquery slider with progress bar
I have this slider and progress bar, but I want the progress bar synced with with the "previous" and "next" buttons as well. So when you click "next" the ...
2
votes
1answer
165 views
Eclipse Jobs API: how to track progress for job scheduled by another job?
What is the proper way to use progress monitors for an Eclipse Job that schedules and joins on another Eclipse job? I'd like the subtask to be associated with the main task.
Ideally, I'd like to be ...
0
votes
1answer
180 views
jquery: .gif animation is not working
In my project I want to display .gif animation (need to display the rotating wheel, to indicate the data is getting downloaded) till the data gets from Server, after clicking the “Display Product ...
1
vote
1answer
44 views
Mootools request follow progress output
Is there any way to follow the output downloaded "so far" when doing a request with Mootools?
I know there's "onProgress", but that only gives me the bytes downloaded.
The page that is being ...
0
votes
2answers
368 views
Use Ajax to show progress of a PHP script called by another Ajax request
I make a jQuery Ajax call to a PHP script that runs for a decent amount of time (between 1- seconds and 3 minutes). It constantly logs a percentage of completion in a database. How can I continually ...
0
votes
1answer
382 views
d3 csv parser on progress value
So I'm trying to load a csv file in javascript using d3 and trying use a progress bar to show the progress it has made while loading. This is what I have:
d3.csv("my.csv",function(data){
//do ...
2
votes
1answer
600 views
Extjs file upload progress
I have seen form file upload example in ExtJS4 and i need customize progress of the file upload.
I see waitMsg config property, but i don't want use that and i don't want use extjs 3rd party plugins.
...
1
vote
1answer
72 views
WebSocket progress
I have a case where I may need to send 500KB - 1MB of data to the client via WebSockets. Therefore, I was wondering if it was possible to track the progress of how much data has been received by the ...
0
votes
0answers
110 views
Seekbar issues (prevent thumbs to move)
I'm increasing the font of textview based on progress bar...and while the width of textview <= device width, the font increases with the bar...and when the limit reach...the font stop increasing.
...
0
votes
0answers
84 views
Java transferTo monitor progress while downloading a file from the internet
I an making a small Java app that downloads a file from the internet. I am using transferTo because I heard that it is efficient and a good programming practise. Now I have two questions:
1. How do I ...
3
votes
2answers
169 views
How to run 2 PHP script simultaniously (non-blocking) for monitoring a popen command?
How to run 2 PHP script simultaniously (synchronous) for monitoring a popen command?
I have a script launching a command like this:
7za a -t7z -mx9 backup.7z "H:\Informatique\*"
And I would like ...
1
vote
3answers
142 views
Stop a TCL script from freezing while processing a command
Okay so what I am doing on a high level is scanning a system for all VISA devices connected to it and having them identify themselves.
The problem is that not all VISA devices support the function to ...
3
votes
1answer
146 views
How to determine the number of bytes curently written by DataHandler.writeTo() method?
I have to download file from web service using MTOM. Details of implementation below is not known to me. I do it this way, which works (response is an object returned from webservices and data is ...
1
vote
3answers
1k views
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 that stop at certain percentages like the ...
14
votes
2answers
1k views
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 ...
-2
votes
1answer
805 views
Loading Progress Bar IOS
-(void)startConnection
{
NSString *urlString = GET_EVENTLIST_URL_STRING;
NSURL *url = [NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSISOLatin1StringEncoding]];
...
1
vote
1answer
147 views
JavaFX 2 - ProgressIndicator overlay on a GridPane
In JavaFX 2 you can use a ProgressInidicator to show that some background task is in progress.
I would like to show ProgressIndicator centered on top of a GridPane, so that it overlays the GridPane. ...


