Most voted "progress-bar" questions
65 questions
Sort by count of
-
16
votes4
answers16259
viewsHow to use Progressbar with Ajax and PHP?
I found some examples where the developer implements a setInterval trying to predict the import time and in the complete ajax put 100% making that bar Progress get "a bit buggy" or jump from nowhere…
-
12
votes1
answer11265
viewsHow to create a dynamic progress bar considering all fields of a form?
I’m trying to create a progress bar a little different from the ones I found around. This for example, take the values of the fields and plays in the aria-valuenow from the progress bar. In my case,…
-
8
votes2
answers795
viewsWhat is the best way to implement a loading bar?
I have a project SPA that in each screen transition, a loading-bar (progress bar) to improve the user experience (this UX will encompass more interactivity than performance). But when researching,…
-
6
votes1
answer2922
viewsHow to make a page load time progress bar?
How to make a progress bar that loads as the page loads? Like on this site here: http://sinalverdecaxias.com/ I saw an example in codepen.io, is kind of like this, I don’t know what this progress…
-
6
votes1
answer767
viewsHow to make a smooth animation in Progressbar?
I’m trying to implement a smooth animation in my ProgressBar, but, if I increase the duration time, the animation stops being "smooth". Example with 5 seconds: Example with 30 seconds: ProgressBar…
-
6
votes5
answers964
viewsHow to progress steps using thread chart?
I am developing a screen using the student’s progress, for example, he has 10 activities to complete, and is in activity 2, so this represents 20% of the total activity. I’d like to represent that…
-
5
votes1
answer850
viewsProgress-bar to DOWNLOAD files in Jquery
I have seen many people looking for how to make a progress bar to download files, Megaupload style. I beat myself up to get here and I’d like to share with the guys! 'Cause I didn’t find anything on…
-
5
votes2
answers1316
viewsMonitor PHP script processing
Does anyone know a way to monitor PHP code processing and present to the client? I’m designing a converter layout which takes data files in a given format and converts to another format. Basically,…
-
5
votes0
answers63
viewsProgressibar with Steps position gets wrong
I’m having trouble leaving in the correct position of the flow with progress <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/checkout_hsv_scrollview"…
-
4
votes1
answer1608
viewsProgressbar and Backgroundworker in C#
I’m creating an app with Firebird 2.5 in which I need her to read a file .sql with instructions to popular the database if it has not yet been done this process, because it is a little long and not…
-
4
votes1
answer1109
viewsHow to change the color of the progress bar?
I’d like to do two things on my progress bar. Change color from green to red. Remove the blocks and create a color. I’m using Visual Studio Community 2019 on Windows 10.…
-
4
votes1
answer954
viewsConnection Progress database by PHP (Laravel framework), PDO
I need to connect to a Progress database via php I am using the framework Laravel 5.2 however the same according to the documentation only has support for Mysql, Postgres, Sqlite and SQL Server…
-
3
votes1
answer2606
viewsChange the color of a jProgressBar
How can I change the color my Progressbar, it always turns a little orange weird, I tried to use this code but it didn’t work: UIManager.put("ProgressBar.background", Color.orange);…
-
3
votes2
answers522
viewsNative HTML 5 Progressibar Animation
How to animate the Progressbar below using Javascript? <progress max="100" id="myBar" value="0" class="progressBar"></progress>
-
3
votes1
answer443
viewsHow to create function to automate a dynamic progress bar?
I have a form with some "modules" (module = a set of questions - I do not know if it is the appropriate technical term...), so depending on which module is chosen, a certain amount of questions will…
-
3
votes2
answers351
viewsprogressbar reaches maximum value but visually does not fill c#
I am working with a software in C#, in which after a login screen, appears a splashscreen with a progressbar that when it reaches its maximum value (100), she calls the main form of the program. The…
-
2
votes1
answer8939
viewsHow I use the Progress bar
I have an android app, which brings latitude and longitude. I wish the moment he’s ordering him to put up a bar for feedback . follows the location code private void start(){ locationManager =…
-
2
votes2
answers564
viewsHow to put texts in Progress
Hello, I have a progress, but I would like to add the value of the percentage at the center of it, with some more information. <progress name="progressbar" id="progressbar" class="progressbar"…
-
2
votes1
answer91
viewspop-up with python progress bar
I am currently migrating a system to python and it has a window that opens making the progress bar. In my migration I used the tqdm to generate a progress bar on the system, but in another part of…
-
2
votes1
answer445
viewsHow to create a dynamic progress bar in R?
To follow the processing status in my routines I use the progress bars of the package pbapply, but I couldn’t find a dynamic way to follow more than one process. To illustrate the problem I…
-
2
votes0
answers603
viewsLoad progress bar as import C#
How to make progress bar load as excel file import is in progress ? My code so far: ASPX: <asp:FileUpload ID="FileUpload" runat="server" Style="margin-top: 4px" /><br /> <div…
-
2
votes3
answers140
viewsProblems with <Progress> tag stylization in CSS
I’m having trouble styling a tag <progress>. I can not change the internal color and the inner part comes out half "square", sometimes even exceeding the margin. How can I solve? On the left…
-
1
votes2
answers1640
viewsAdd progressbar to my webview
Hello, I want to add a progress bar to my webview. I saw a tutorial and it didn’t work properly, because the progress bar keeps loading eternally. I will post the code of how it was, I wanted to…
-
1
votes1
answer2978
viewsCustomize Android Progressbar
I would like to develop a ProgressBar customized to use in my application, but I’m not sure how to do this. It is necessary to create a sub-class of the ProgressBar? You can only do it in xml? I’d…
-
1
votes1
answer209
viewsExtract . zip with status
How to extair . zip files in a way that I can see the status of the items being extracted. Ex: static string GetStatus() { return "Extraindo... " + current_arquivo; } Using Ionic.Zip’s Opensource…
-
1
votes2
answers456
viewsOpen Progress bank
Good afternoon, I need to open a client’s Progress database to make an import and I’m not getting it. I need some help to know some way to work with this bank, whether by code or applications. these…
-
1
votes1
answer406
viewsCircular Progress Bar Android
Guys, having trouble making a circular Progress bar, would anyone like to explain me and show me some example?. Thank you very much.
-
1
votes1
answer87
viewsHow to add a Progressbar to a Pageradapter?
I have a Viewpager that uses a Pageradapter to make an image slide. In my class extending Pageradapter I have an Asynctask that loads images from the internet and plays in Imageview. How can I put a…
-
1
votes1
answer915
viewsProgressbar using Javafx
I have a method that reads multiple files and generates a report for each file read. How do I take the time of each service and show on ProgressBar? I have to use Thread or Task? I tried to do it…
-
1
votes0
answers158
viewsProgress bar similar to youtube
Does anyone have any notion of how to make a progress bar similar to youtube with loading according to the time of the requested page?
-
1
votes2
answers395
viewsProgress bar on web system
Does anyone know a way to make a progress bar on web system? In case my progress bar is not for file upload, it is a task that takes a while, then it would be nice a progress bar for the user not to…
progress-barasked 7 years, 8 months ago Marcos Barbosa 91 -
1
votes1
answer89
viewsCreate progress bar with jQuery’s Hover()
I need to create a progress bar while my cursor is on top of an image. If the cursor leaves, then I need the progress to be reset to repeat the process if the cursor goes back over the image. When I…
-
1
votes0
answers336
viewsCodeigniter + Progressbar
Hello. I’m trying to develop a file upload system which when doing the post generates and loads a progressbar according to the course of my file unzip script, read and store in the bank. It’s the…
-
1
votes1
answer547
viewsHow do I change the color of the Progressive bar when an error occurs?
How do I change the color of the Progressive bar when an error occurs ? <div id="divMenu"></div> <div id="divModals"></div> <div class="container"> <label…
-
1
votes0
answers44
viewsProccess Dialog does not open Asynctask
During an API interaction that lasts on average 5 seconds, I need to place a Process Dialog. My code: public class finalizaPedido extends AsyncTask<Object, Void, Integer> { private String…
-
1
votes1
answer877
viewsFood Progress bar with Js
I did a job javascript that takes the number of Ids filled and returns a number that turns into the percentage of width that makes the bar move, however, I have a character counter that should send…
-
1
votes1
answer45
viewsHow to trigger this progress bar?
I started studying Javascript and jQuery now, and looking for how to make a vertical progress bar found the function below: It worked perfectly as I wanted, but I would like to know how I can get…
-
1
votes2
answers63
viewsIndividual progress bar for each shipment
Today I can perform file uploading by displaying a progress bar. when I make a new request, the values in the progress bar alternate between the values of each upload. This way, I would like to show…
ionic apache-cordova file-upload cordova-plugin progress-barasked 3 years, 10 months ago Hérick Raposo 31 -
0
votes1
answer234
viewsargument out of range Exception was unhandled
I am beginner in VB.NET and I am creating a simple simulation game, have hunger, thirst etc, in the hunger progressibar the maximum that arrives is 100. When you eat something restores 5, if I’m 98…
-
0
votes2
answers179
viewsUse Progressbar to copy folders and their contents
I have an application in C# Winforms that when you click on a button, you should start copying several folders and their respective contents. As this process is time consuming, I would like the user…
-
0
votes2
answers161
viewsIncrease width in % and not in px
How do I increase the widht with %? You put this code that I did, it increases, but it’s in px, and I wanted it to increase in percentage. var progressBar = $(".progress-bar");…
-
0
votes0
answers116
viewsHow to show the progress of a Progressbar in S.O.’s Taskbar?
I’m using a javafx.scene.control.ProgressBar and a javafx.scene.control.ProgressIndicator, and would like to know if it is possible (and how to do) to be shown the progress in the Taskbar of the…
-
0
votes1
answer348
viewsInsert progress bar with php - Bootstrap
You can insert a progress bar using bootstrap for the amount of data entered into a given table in the database? Ex: If I have 100 entries the bar would progress to 100.…
-
0
votes0
answers359
viewsHow to make a custom bar on android
I haven’t started to do anything yet, so I haven’t put any code here, I need a direction of what to study to do a pub in the shape of a water tank and as it fills up, a water goes up inside the…
-
0
votes0
answers365
viewsHow to make Progressbar fit the screen?
I’m developing an app for my site and finally manage to add a ProgressBar that accompanies the page loading, then manage to put a style and now just missing that it really starts from the beginning…
-
0
votes1
answer694
viewsEnding Two Threads with Progressbar in C#
I’m making a ProgressBar file conversions, each converted file is updated to ProgressBar with a percentage of total files to be converted. I read in a tutorial how to do the ProgressBar, work with…
-
0
votes0
answers325
viewsControl position change of a recyclerview through a progression
I’m trying to make a routine, where I control my item passage from my recyclerView by a progressBar, I mean, every time I change the item, this change has to be reflected in the Ogress. The problem…
-
0
votes1
answer89
viewsProgress bar in angulajs
I need a progress-bar which is the image of a chalice being filled with AngularJs. Something like this: http://franverona.com/loadgo/. Can someone give me an example? I don’t have the official image…
-
0
votes1
answer90
viewsProgressidialog does not quit 0%
I am uploading an image to the firebase database and I want to show it in the file but it always stays 0/100. progress=new ProgressDialog(getContext()); progress.setMessage("Downloading Music");…
-
0
votes1
answer436
viewsProgressbar does not update according to Xmlhttprequest request - Jquery/Asp.net
I’m building an app to upload videos and photos, and I’d like to put a ProgressBar to show progress for the user, I found some questions to answer (Like this question), but I’m having a little…