progressbar

How to create a Vertical progressbar in Cocoa?

I'm trying to create a vertical progress bar in my Cocoa app, i.e, the progress bar should grow from bottom to top. I'm using NSProgressIndicator, and I can't find a way to specify vertical or horizontal. Can anybody please tell me is it possible to do it? Thanks, Lee ...

How to show a splash screen to kill the time while data is loaded?

When starting my app I at first have to read in some data, have to init some forms and so on. For that time the user sees just grey getting-ready to show something forms. This lasts for a few seconds... I thought of a Splash Screen that loads the data in a seperate Thread and also shows how long it will take. Or just a status bar? How...

Reading live output from shell script and updating progress bar

Hi, I have a shell script logging a list of numbers (1, 2, and so forth, one per line) to a log file. I need my ObjC app to read the log file every X seconds and then update my progress bar accordingly based on the last number logged in the log file. What's the best way to do this? ...

Using a Background Worker - Update a ProgressBar on the progress of a Recursive Method

Hi guys, Below is a method that I want to ship off into a background worker but I am struggling how to do it based on how created my method. As you can it doesn't return anything which is ok but it expects a directoryInfo object everytime it is recalled. private void getSizeForTargetDirectory(DirectoryInfo dtar) { // g...

Progress Bar in Setup Application

I have created a custom action for my setup project and have successfully implemented a form that displays a progress bar for a download step in my install (I'm using a WebClient in my custom action code). So I have two questions that relate to each other. Is there any way to show a download progress bar in the main setup window rather...

WPF: TextBox with ProgressBar

Is it possible in WPF to embed a ProgressBar in the Background of a TextBox? ...

How to show progress bar with jQuery?

Just to tell the user that your request is being processed. EDIT: I've find myself an image. How to show it in the center of whole page? ...

How to determine the increment steps for a Progressbar in .NET?

Hello, It seems trivial, but I cant find a clean algorithm to this. I can calculate my total rows to 2186. Then I thought I do a 2186 / 100 = 21 (which would be my modNr) Then I thought I would increment the currentRowNr++ inside Backgroundworker.reportprocess() And do a if(currentRowNr % modNr == 0) increment progressbar. The progre...

jQuery progress bar with status text

Is it possible to add status text in jQuery progress bar? For example : if i am selecting 3 files to upload i want to show the filename below the status bar is it possible? ...

jQuery progress bar appearing after the page loaded

I am trying to show the progress of file upload thru jQuery. File upload works fine. But progress bar appears after the file is uploaded. That is pregress bar shown in 100%. But when i 'alert' i can see the progress bar. any idea why progress bar is not shown with below sample ? <body> <div id="progressbar"></div> <div id="stat...

WCF methods with large result sets - visually tracking transfer progress

I have a WCF services that has to return some data sets that can be as large as 10mb or more, I want some visual feedback for the user on progress, is there a way to track the download progress? My client is Silverlight 3 and ultimately I would like to be able to bind a progress bar to this; any ideas? EDIT: After the bounty SO automat...

What if I need to use the UI thread of a WPF application to do a long processing task on a UI element, but also update a progress bar on the same window?

My program consists of a large graphing UI control that I need to spend about 15 seconds re-loading every once in a while. Because the updating code works primarily with the UI control (maybe 90% of it actually sets properties on the control), it would make sense to me to actually let the UI thread handle that. I really don't want the ...

Easy way to modify progress bar in existing Delphi code?

Hello, I am using demo code which compresses all files in folder. However, it's progress bar displays not total progress, but progress for every file. Is there any easy way to modify code so progress bar would display total progress and not progress for every single file? procedure DoProgress(Sender: TObject; Position, Total: Integer)...

Why does my IE progress bar keep going after every other page load?

I'm seeing this issue. I have a relatively simple ASP.NET page with a gridview and some buttons. When I click a button, the page re-binds the grid and posts back. What's strange is that every other time I click the refresh button, the IE progress bar (in the status area) stays "on", signaling that the user that the page is still loadin...

Progress bars for tasks that can take an indeterminate ammount of time?

Another random question that hit me (I've drank ~9 cups of coffee in the last 5 hours, so sorry...) -- What kind of progress bar would you show a user for a taks that you do don't know how long it would take, but you have a good idea of an "average" time. For example, a task that would usually take around 30 seconds, but you have no way ...

How to draw a progress bar inside a list widget in Qt

I want to have a list of items that need to be processed in a QListWidget. Similar to Windows Media Player CD import, there should be a progress bar for every item in the list. Now there seems to be a way to do this by creating a regular progress bar, using QPixmap::grabWidget() to save its appearance in a QPixmap and then adding this Q...

C# Winform ProgressBar and BackgroundWorker

I have a problem like this : I have a Form named MainForm. I have a long operation to be taken place on this form. While this long operation is going on, I need to show another from named ProgressForm on top of the MainForm. ProgressForm contains a progress bar. Which needs to be updated while the long operation is taking place. Af...

C# refresh window while doing something else

Hi, following scenario. I have a datagridview and a progressbar, datagridview is being filled with some datas from active directory. Filling my datagridview takes about 3 minutes. Now, while my program is working everything is fine until I switch windows - like for example open web browser or anything else. When I swich back to my progr...

Progressbar values from loop on other form?

I wold like to create a progressbar for my application, im running i got one main form that opens a Child form with a datagrid with a loop i<30. the loop takes a bit of time as it querys the database. this hold up looks to the user like the software is stuck, so i was thinking of creating a progressbar to show how long the operation is...

Display value in jQueryUI ProgressBar

I've set up a simple jQuery UI ProgressBar: <script type="text/javascript"> $(function() { $("#progressbar").progressbar({ value: 35 }); }); </script> <div id="progressbar"> </div> Among other things, I'd like to display some text in the progress-bar (for starters, I'd just use the "value"). I can't seem to get this...