"Progress" is the name of a development tool and database from Progress Software Corporation. The "progress-4gl", "progress-db" and "openedge" tags are more specific to that environment.
Questions tagged [progress]
1522 questions
0
votes
2 answers
Swing Windowless Component?
I want to show a spinning progress wheel thing (like this) when something's processing to show the user something's happening. Is there any way I can do this without popping up a whole window for it? I'm using swing. Thanks.

kentcdodds
- 27,113
- 32
- 108
- 187
-1
votes
3 answers
Dimiss SVProgressHUD
I have a webview to load on launch and have a SVProgressHUD to display while loading. This issue is when the load time takes long and the user backs off the view, I want to hide/dismiss the SVProgressHUD.
There is a built in function of dismiss. I…

socbrian
- 151
- 1
- 2
- 8
-1
votes
4 answers
how to show Progress Dialog while fetching the video/image from remote url?
I have create a one service which triggered every 1 minute and check at server that is there any new notification arrived or not for the user.Notification can be of 3 types which is of type text,video or image...
Now to display text notification i…

user1221162
- 71
- 1
- 1
- 6
-1
votes
2 answers
ProgressDialog in android
This is my activity code.. here I'm fetching data from the database through JSON and PHP...
How can I display a progessDialog when the data is loading?
Here is my activity code:
package org.postandget;
import java.io.BufferedReader;
import…

Parthi04
- 1,121
- 4
- 21
- 39
-1
votes
1 answer
Show searching percentage in uı for a game engine using C#
I have a program which is searching words in a big sized word list In a game engine uses C# . But my problem is that when the list of words too big UI look seems it was hang. In prevention of it, I use UI so the user will know how many words…

D. GÜL
- 3
- 5
-1
votes
2 answers
How use progress bar without Timer using in vb.net
Hello every one how i use progress bar without Timer using in vb.net i have try but i dont get the solution please help me
Dim i As Integer
ProgressBar1.Minimum = 0
ProgressBar1.Maximum = 200
For i = 0 To 200
ProgressBar1.Value = i
…

khan ali
- 1
- 5
-1
votes
1 answer
get long process progress in async task function
I have a async function and used the Progress< int>
to progress long process After I run another task, it seems that the many progress reports are running.
private async void Listbox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
…
user10607836
-1
votes
1 answer
how i get model_training progress?
I have a question related in tensorflow model training.
i use DNNClassifier model.
like below..
training_model.train(
input_fn=self.input_fn_for_training(
training_data_frame,
…

Park.BJ
- 163
- 1
- 10
-1
votes
3 answers
make a progressBar
I want to add a ProgressBar to my project, I get the following error: CAN NOT RESOLVE SYMBOL LOADING.
see below my code,
help me plz
public void showProgressDialog() {
if (mProgressDialog == null) {
mProgressDialog = new…

valdimiro einstein
- 107
- 9
-1
votes
1 answer
seek bar not working when playing mp3 song from server
In my app I am trying to play a media player from server along with a seek bar. When I tried to play the song from server, my app was working fine but the seek bar was not getting moved ! Also, The seekbar is not working....
It's not…

user8622498
- 9
- 4
-1
votes
1 answer
Specified the scroll of a UIScrollView with an UIProgressView
I would like to add a progress bar under the navigation bar which will indicate the progress of the scroll of a UIScrollView, I use (not work) : I do
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
self.progressView.progress =…

victor bill
- 209
- 2
- 15
-1
votes
1 answer
JProgressBar show status of another class void
I have a class that performs copying from one folder list of files which is loaded first as .txt , then is copying to temporary folder. I want to show progress of copying files to folder and vice-versa
This is my copy class:
public class CopyService…

tehnodrom
- 75
- 11
-1
votes
1 answer
When I notifydatasetchanged my adapter every second, click events dont work properly
I want to implement custom progressview on base adapter for showing background download progress on list items, every second I check download progress and update my model, then trigger notifydataset to reflect the progress to UI. Since it couses so…

hugerde
- 919
- 1
- 12
- 27
-1
votes
1 answer
Which is more efficient way to monitor progress of a long running code? print on screen or log to a text file?
I have a java code that as part of the code it handles a very big matrix (1 million by 4 million) and it takes several hours to run, before it crashes!
I would like to monitor the progress of the code, so know when it runs out of memory and crashes…

cybergeek654
- 290
- 1
- 5
- 15
-1
votes
2 answers
how display any content in browser during page loading
In my html code a lot of time leaves on loading of the script blocks.
While there is a loading on the screen of the browser nothing is displayed (white screen).
How can I make sure that when you start the browser would display any div block…

Zhihar
- 1,306
- 1
- 22
- 45