A progress bar is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer.
-3
votes
0answers
26 views
Steadily/Regularly Increase ProgressBar Android
I want to use a progress bar to steadily increase a progress bar, for example steadily increase a progress bar so it completes after exactly 5 seconds. Could anyone tell me how I can do this?
...
0
votes
1answer
29 views
change label text while Winform is open [closed]
I am trying to Change the text of a Label after it is shown in a Progressbar,
i want to Show the number of files that are being uploaded, and the number that has been so far.
i have created a ...
2
votes
2answers
33 views
Tkinter: How to use threads to preventing main event loop from “freezing”
I have a small GUI test with a "Start" button and a Progress bar. The desired behavior is:
Click Start
Progressbar oscillates for 5 seconds
Progressbar stops
The observed behavior is the "Start" ...
0
votes
1answer
22 views
Spinning Bar Using AFNetworking
I have this method that is reaching a webservice and bring me back a JSON. The method is working fine, the problem is that I want a spinning bar progress while this method is not bringing anything ...
0
votes
0answers
25 views
Getting rid of flicker in SWT
We are using a the following class to show a progress-bar in our Java application: TextProgressBar
Unfortunately we are having some problems with flickering when using that (Win 7, Java 7). Do you ...
0
votes
3answers
27 views
Mobile progress bar
I am searching for a progress bar (or slider without thumb which would not be interaction enabled).
I want to use it in a HTML5 project with jQuery mobile for iOS/Android/Windows mobile. On mobile ...
0
votes
1answer
18 views
Tracking upload progress of WebClient
So I am currently uploading files via a php script on my webserver using the following code:
string file = "dp.jpg";
System.Net.WebClient Client = new System.Net.WebClient();
...
1
vote
1answer
25 views
JavaFX Update progressbar in tableview from Task
I know Task has a method updateProgress, I would need to bind progressbar to task, however I cannot do that, as I do not have progressbar as an object.
My program has a TableView. Once user enters ...
0
votes
3answers
47 views
C# - Value of '10000' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'
I have a web browser progressbar. And the code is:
private void progressBar1_Click(object sender, WebBrowserProgressChangedEventArgs e)
{
progressBar1.Value = ...
0
votes
1answer
23 views
How to change background image on android progress dialog
I have create my first android app (using webview), this is the code for my 'webviewactivity'
public class WebViewActivity extends Activity {
private WebView webView;
public void ...
0
votes
2answers
22 views
run multiple tasks in parallel using C#.net 2.0
I need to perform 2 tasks in parallel. One will load data in the GUI, till then I want to run a progress bar continuously in front of user. I tried BackgroundWorker but it is giving me some Thread ...
0
votes
0answers
18 views
Android: How to set up a dynamic upload progress bar while FTPClient.storeFile?
In android I need to set up an upload progress bar for uploading picture files (only picture files). I don't know how to do it dynamically...
How can I do this?
I know that's not the correct way, ...
0
votes
0answers
24 views
Custom ProgressBar 'Failed to Convert' Android Studio
I am trying to create a custom progressbar (taller and a different color). I am following the correct answer here. but get an error in the preview mode of Android Studio.
Couldn't resolve resource ...
-3
votes
1answer
24 views
jQuery Progress Bar Not Showing Progress
I found this Jquery progress bar function and I want to simply use it to show the progress bar while my web page is loading.Actually I included the code and images.The progress bar is showing the ...
0
votes
0answers
17 views
jQuery ui progressbar is not working in chrome
I have the following element in my HTML.
<div id="progressbar" class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" ...
0
votes
1answer
34 views
how can you pulse a progress bar in Qt?
Is there a way of using CSS or something else to make a pulsing QProgressBar in pyqt as illustrated below?
The default progress bar has an animation when using the windows vista theme, but I'm not ...
0
votes
1answer
54 views
Making a console progress bar? (Windows)
So I have a function (or rather, I'll turn it into a function later) to make a random % progress in a console window; like this:
#include <iostream>
#include <time.h>
#include ...
0
votes
1answer
20 views
JavaFX ProgressBar Value Doest Work
ProgressBar pb = new ProgressBar(0.0);
pb.setProgress(1.0 - (1.0 / ((1.0 * 60) / 15000)));
I want progress bar show 60min state, but when left 15000min not really showing state.
Sory for my bad ...
0
votes
2answers
32 views
GUI - Display lines one by one on a JTextPane and make a related JProgressBar
How to display lines one by one on a JTextPane and make a related JProgressBar?
I have this loop:
int k;
for (k=0; k<array_TXT.length; k++) {
if (array_TXT[k] != null) {
...
0
votes
1answer
50 views
Android Progress Bar slow rotation on pre HoneyComb devices
I've been trying to achieve an smooth rotation of a drawer in pre honeycomb devices, but it was impossible for me:
In my layout.xml
<ProgressBar
style="@style/ProgressBarLarge"
...
3
votes
3answers
114 views
Implementing a Progress Bar in C#
Attempt number 2. Trying to be as clear as possible because I have been on this task for much longer than I should have and made little progress.
I need to make a progress bar for an application. ...
-1
votes
2answers
61 views
PHP Profile Image upload with progress bar and preview like Facebook
I want to upload a profile image with a progress bar and, after uploading the image, it should show the preview of the image like on Facebook. Please help.
0
votes
2answers
47 views
ProgressBar value is not increasing.
I was adding a progress bar in my login form.
After clicking on sign in button in login form thenext form gets some values from database(in form load), and then the next form opens after getting the ...
0
votes
0answers
34 views
Custom slideshow effect added in the progress bar with dots.
I'll be honest with you all; I'm totally not a developer and specially not with Javascript. I want a custom to create a custom slideshow and I specially liked one kind:
...
0
votes
1answer
17 views
Bind ToolTip.Content to a ProgressBar.Value in a DataTemplate
Tried many ways like defining the binding as RelativeSource=TemplatedParent, RelativeSource=FindAncestor, TemplateBinding and even ControlTemplate but the ToolTip remains blank.
Note: not looking for ...
2
votes
2answers
56 views
Progress Bar and Threads
I have this Progress Bar class (Testing threading)
public class ProgressBarUpdate
{
//Add getters and setters
static MainGUI theForm = (MainGUI)Application.OpenForms[0];
...
1
vote
2answers
35 views
How to create a progressbar with sections?
I would like to have a progress bar that is divided clearly visible sections. For examplee, a user has to go through seven steps to complete a registration process. I want the progress bar to be ...
-1
votes
0answers
24 views
Android custom dialog with progressbar(circle) and asynctask
is it possible to make dialog like in web - image preview full screen ?
press on thumb
openning fullscreen dialog with progressbar on it
asynctask getting image(Base64)
on asynctask finish show ...
0
votes
1answer
34 views
CRM 2011 progress indicator in forms
I have some javascript that fires when a form loads, and the javascript can takes up to 10 seconds (queries an external service for some data). Is there any way to show some sort of a visual progress ...
0
votes
2answers
52 views
Invalid thread access in SWT (progressBar help)
first of all I'm sorry about my English level, I'm Spanish.
I have a little problem with a progressBar in SWT application:
I have 1 Class(The application (SWT)) with all controls(progressBar, ...
0
votes
0answers
30 views
Customizing the “Presentation Cycle with progressbar” no “flow” effect.
I've been searching around to find the same slideshow as the one used in the website of sputnikcreative.com. I found it as nice way of presenting some stuff I design and I'm totally not experienced in ...
0
votes
1answer
37 views
Manage tasks progressions in one user interface
I have an application in witch the user can start tasks, heavy tasks. And I want to manage the progression of these tasks in one user interface Grid (each row is a task, with a progression bar) the ...
1
vote
1answer
18 views
Show the progressBar that correspond to row of TableView when click with Custom TableViewCell
I stuck few hours with this problem. I have 3 rows in my tableview.
I also use a custom cell contained 1 button and 1 progressbar.
The problem is when I click on button at first or second row, the ...
-3
votes
0answers
16 views
I want to create a profile page in rails 3.2.12 that contains image which is displayed with progress bar [closed]
I want to create a profile page in rails 3.2.12 that contains single image which is to be displayed with progress bar while uploading using gem file jquery-fileupload-rails and paperclip.
Please give ...
0
votes
2answers
48 views
disable progress bar animation in Qt
Is it possible to disable animation of the progress bar in Qt and make it behave like a meter instead?
Below is the default behavior, and I would instead like it to not have the shiny wave go through ...
1
vote
1answer
57 views
Display file uploading progress with Google Cloud Storage
I have a web app which allows users to upload files to Google Cloud Storage on behalf of my web app. I already implemented a simple feature successfully using an HTML POST Form, described here.
...
0
votes
1answer
35 views
how to make Indeterminate progressbar look nicely?
I'm using nimbus lookAndFill
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
and my indeterminate JProgressBar looks like that:
...
0
votes
2answers
74 views
Proper way of doing Progress Bars C#
I have a big project (30ish developed classes) and I want to make a loading bar for it. I have a current progress and total progress bars. I also have to roughly describe what is happening during the ...
-4
votes
0answers
28 views
I need code of progress bar for this uploading script [closed]
I am using the below famous uploading script, I tried to develop progress bar for it, but I failed!
I will be thankful if somebody helped me by designing simple script without necessity for installing ...
6
votes
2answers
93 views
+50
Wrapping up a method with ruby-progressbar gem
I am trying to use ruby-progressbar gem with ruby-git gem
My aim is to capture the dynamic progress bar during the git clone so that i can get the progress bar for this git clone
I am trying to use ...
1
vote
1answer
71 views
Loading bar while cmd.exe is running
What I'm trying to do:
Pass a command to .cmd, show a loading bar while the command executes, exit cmd and display a message box after progress bar is full
What's happening:
When I click the button ...
0
votes
1answer
74 views
How to create a Progressbar drawable in Android?
I would like to place a Progressbar over an Imageview until an image is loaded there using an async task so that the new bitmap will replace the progressbar drawable. I have checked out the Android ...
2
votes
2answers
57 views
android display dialogbox during progressbar
I have this problem: during a long operation, I display a ProgressBar. Sometimes, during this operation, the programm has to ask the user for somewhat.
Then, I'd like to display a DialogBox, but if I ...
0
votes
1answer
32 views
How to get progressBar progression [C#]
Let me say that I have a progessBar, how can I know the progression of the bar without having to use a counter to see how many steps the program made.
Just for research.
-1
votes
0answers
48 views
How to link progressbar to AJAX request
I am trying to add a progressbar with JQueryUI to my app to display the progress of an AJAX request. The reason I would need a progressbar is that the server-side process implies quite a lot of ...
0
votes
2answers
25 views
How to create a slideshow just like the one of http://sputnikcreative.com?
I've been wondering what kind of slideshow this is. It's like the one on sputnikcreative.com. (Procress) I've been browsing but can't find anything like that and I ain't good with jQuery/javascript so ...
0
votes
0answers
57 views
Add ajax progress-bar to Django form while keeping existing input file/submit elements
I have a Django template upload-video.html coded by a previous and more-experienced Django developer with a form whose action I don't want to change, because the Django function handling the request ...
1
vote
1answer
60 views
Progressbar (ttk.Progressbar) with python in tkinter not showing
Using the ttk.Progressbar in Python (in a tkinter GUI), I'm trying to have a progressbar appear when I press a button. Clicking the "Analyse" button on the gui calls the function analyze in the ...
0
votes
0answers
38 views
Plupload uploadprogress event always giving file.percent as 100
I am using the plupload.full.js downloaded from the www.plupload.com for uploading images,
My issue is when i tried to display a progress bar using the upload progress event it always gives a value ...
2
votes
1answer
35 views
Trying to implement a simple responsive progress bar with issues
Ive followed the instructions as to the site i obtained the information off and now im stuck the following code is as follows
HTML
<div class="progress-wrap progress" ...




