Most voted "progress-bar" questions
65 questions
Sort by count of
-
0
votes1
answer207
viewsMissing server connection via Httpurlconnection
I have an application that queries a URL through the following method within a AsyncTask: try { HttpURLConnection http = getHttpUrlConnection("http://www.sitedoservidor.com.br"); if (http != null) {…
-
0
votes1
answer291
viewsAsynctask onPreExecute method problem - Android Studio
I have this Activity that displays the user score of my application. However, when this Activity is called, what should occur is a ProgressDialog being displayed with the message "Buscando Pizza"…
-
0
votes1
answer379
viewshow to hide a progressBar after given time
I’m using the following code new Thread(new Runnable() { public void run() { while (cont < 100) { cont += 1; try { Thread.sleep(20); } catch (InterruptedException e) { e.printStackTrace(); } }…
-
0
votes1
answer83
viewsInterjection between a correct and incorrect question with a progress bar?
$(document).ready(function() { $('form').submit(function(e) { e.preventDefault(); var answerValue = $('#answer').val(); answerValue = answerValue.toLowerCase(); if (answerValue == 'rafael') {…
-
0
votes1
answer588
viewsHow to make a Line automatically increase the height of javascript css jquery
Good evening, people I’m with the following problem, in the layout I’m mounting has several lines in different places during the course of the page, the customer wants these lines to appear and grow…
-
0
votes1
answer292
viewsCalculate circular Progressbar time C# (Windows Forms)
I have the following circular Progressbar, the idea is that it be decremented second by second, so far so good. However, I need the bar to always start complete (circling the circle 100%) and the…
-
0
votes0
answers183
viewsHow to not freeze/lock the application when querying data via SQL Server and create a "progress bar"?
The code below as an example brings me great information from the database. Every time I click on the "Search" option of my program, my application freezes/hangs for a while until the select "pull"…
-
0
votes1
answer100
viewsPOST requests with Android loading icon
I’m making an Android application that will make some requests to an API, I generalized these requests in a class (Requestapi), where, to use it, just create a map with the information I’ll send to…
-
0
votes1
answer509
viewsCall Form2 with Circular Progress Bar while another action is executed C#
I have a question about a Windows Form call. In this application, through the button click event located in Form1, call a second Form, where in this form2 I present an animated Circular Progress Bar…
-
0
votes2
answers186
viewsPrevent the user from using the mainwindow window while another window is open
I have a WPF application following the MVVM standard and in a certain part of the application I show a Progressbar that I implemented in a separate view for the user and, while this progressionBar…
-
0
votes2
answers80
viewsProgress bar does not update with ftp download
Hello, so here’s the thing i have a function that downloads the desired file from http, and as it downloads, it updates the progress bar (being increased from 0% little to 100% when finished).…
-
0
votes1
answer76
viewsCall Jdialog without closing/hide Jwindow
I’m making a shipment using a Jwindow public class TelaCarregamentoConf extends JWindow{ // JProgressBar barradeprogresso; Outraclasse outra = new OutraClasse(barradeprogresso) new Thread(){…
-
0
votes1
answer203
viewsJS and HTML5: Countdown Bar only works "on screen"
I’m implementing a small progress bar (.progressbar) that actually works as a "countdown bar" (it’s an inverted progress bar, it starts full and goes down) and will work as a session expiration…
-
0
votes1
answer17
viewsWhy doesn’t my Progressbar increase values?
I have an application in Winforms where I have Tasks and in each task I implement statically a value there progressBar, I would just like to know why it does not show this evolution in winForms Ui.…
-
-1
votes1
answer27
viewsCall Project Progressbar winforms in test project in the same Software
Friends, I have 2 projects in the same Software, 1 of these codedUI and another with winform containing a simple progress bar. It was carried out the import in the test project of the reference and…