progress-bar

Creating a file progress bar in PHP

Does anyone know of any methods to create a file upload progress bar in PHP? I have often heard that it's impossible. I have one idea, but not sure if it would work: have a normal file upload, but instead submit to an iframe. When this is submitted, store the file information (size and temp location) in the session. At the same time, st...

Download time remaning predictor.

Are there any widgets for predicting when a download (or any other process) will finish based on percent done history? The trivial version would just do a 2 point fit based on the start time, current time and percent done but better option are possible. A GUI widgest would be nice but a class that just returns the value would be just f...

Make/makefile progress indication!

Look at this makefile, it has some sort of primitive progress indication (could have been a progress bar). Please give me suggestions/comments on it! # BUILD is initially undefined ifndef BUILD # max equals 256 x's sixteen := x x x x x x x x x x x x x x x x MAX := $(foreach x,$(sixteen),$(sixteen)) # T estimates how many targets ...

Progress bar in HTML/CSS

dd { /*position: relative; /* IE is dumb */ display: block; float: left; width: 500px; height: 16px; margin: 0 0 2px; background: url("white3.gif"); } dd div.blue { /*position: relative; */ background: url("blue.gif"); height: 16px; width: 75%; text-align:...

How do I make a winforms progress bar move vertically in C#?

I'm working on a winforms jukebox in C#. I'd like to have a vertical progressbar for the volume control. Does anyone know how to do that? ...

Problem progressbar in dbadvgrid

hello, please can you help me to resolve my problem which is : i have field calculted in my query like (sysdate-adate) to have a difference between this two date i would like to have this field appear like a progressbar in dbadvgrid. but my problem is how to change the color of this progressbar when his value is >100 than...

How to link the ffmpeg transcoding process information into a vb6 GUI app?

hi guys, i'm playing with a vb6 gui frontend for ffmpeg and as of now all i can do is to call the ffmpeg via cmd.exe which will shows the command prompt while the whole process is still running. And i thought this was the norm seeing how WinFF, another pascal based frontend gui for ffmpeg works. But i was blown away when i saw this othe...

Display Progress Bar at the Time of Process

If am getting a Data from the Database from start date to end date – at that time, I want to display progress bar like “Process please wait” How can I write a code? Need Help? ...

Progress bar click (Compact framework)

I'm using a progress bar to display the battery status. If the user clicks on the progress bar i want to display a popup with details. Excluding the solution that requires checking if the click coordonates is in the bounds of the progress bar has anyone found another solution or a workaround to this? ...

How can I make a web progress bar in Ajax and Perl?

Hello Everybody, We use an ajax call for sending the data to the server. The server-side programming is done using Perl to save data into the database. As we have files which are huge in size we want to display a progress bar which tells the user the percent data posted to the server. How can this be achieved using Ajax and Perl? Tha...

CSS progress bar text color for contrast filled and empty backgrounds?

I want to have XHTML+CSS progress bar with contrast colors between filled and empty background areas. I have a problem with text color. Because filled and empty backgrounds are too contrast (this is a requirement), to remain readable the text should be double-colored to be contrast to both of them. The image should explain it better tha...

How to implement a progress bar in Ruby?

We want to implement a progress bar for file uploading in one of our Ruby application. This needs to show the exact percentage of the upload. However, despite our best efforts we could not find a way to implement a progress bar that exactly replicate the file upload process. Can you please help us with this? ...

What do you call a looping progress bar?

Ok I'm just at a loss for what the correct terminology is for this. I'm looking for the correct name to call a progress bar that "loops". Instead of the standard progress bar that fills up from left to right to 100%, this looks exactly like the progress bar but a small portion of the fill color constantly loops, never filling the whole...

usage of generators as a progression notifier

Hi! I am currently using generators as a quick way to get the progress of long processes and I'm wondering how is it done usually as I find it not very elegant... Let me explain first, I have a engine.py module that do some video processing (segmentation, bg/fg subtraction, etc) which takes a lot of time (from seconds to several minute...

progress bar while waiting for server

hi Some operations are time costly and it takes long time while waiting them to finish. Sometimes timeout occurs. I want to use a real time progress bar, so I want to show the status to the user and also I want to prevent timeout. Which technologies must I use? JS, Ajax, multithread or both? and how can I iplement this? Please advice. ...

How to change the color/size of one progress bar

Hi, I'm pretty new to jQuery-UI, but I love what I see so far.I am using the 'blitzer' theme (as I needed red progress bars) and I have 4 progress bars side-by-side on one page. Now my PM wants one of them to be green, and bigger than the rest. I looked around the provided theme CSS but couldn't find the right tag to tinker with. Can any...

gif loader centered as top layer

I have a php form. After this form is submitted, if all data is valid, then it executes a python script which takes 5-10 seconds. For this wait period I would like to have a progress bar (.gif) displaying in the middle of the screen. If I could also 'fade away' the background so that the progress bar was like a top layer and the backgrou...

How is the file uploading progress reported?

I have been trying to implement an ajax-style file upload. I was wondering what we must do to report the uploading progress. I am trying to implement this in my asp.net web page. I understand the mechanism by which we can upload a file, ajax-style, on a web page. I have been googling a lot about how to show a progress bar, but I don't s...

How to Use Progress bar to show iphone application loading ?

Before app Loads The Default.png is shown fine till here next is to show Progress bar. And then it will show the application view. Please Supply code example ? Hope you got it all :) Thanks. ...

How can google app engine report progress back on file upload

I have been trying to use an ajax-style file upload component (like the dojox file upload component) with google app engine, and have a progress bar. The javascript side of things is fine, but i am wondering how to organise things on the server side? Is is possible to access the data as it is being uploaded within google app engine, ...