Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8379385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:10:18+00:00 2026-06-09T16:10:18+00:00

I was looking through this thread How to make Timer countdown along with progress

  • 0

I was looking through this thread

How to make Timer countdown along with progress bar?

I would like to add this to my code so i can just get a jProgressBar and a Button, (Using netbeans preferably)

So that when I hit the button it runs from 0 to 100 steadily, I really have tried to go at this on my own and have got really mad, any help would be nice.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T16:10:20+00:00Added an answer on June 9, 2026 at 4:10 pm

    Leveraging @Andrew’s example,

    image

    import java.awt.GridLayout;
    import java.awt.event.*;
    import javax.swing.*;
    
    class CountUpProgressBar extends JPanel {
    
        private JProgressBar bar = new JProgressBar(JProgressBar.HORIZONTAL, 0, 100);
        private JLabel label = new JLabel("", JLabel.CENTER);
        private Timer timer = new Timer(100, new ActionListener() {
    
            private int counter = 1;
    
            @Override
            public void actionPerformed(ActionEvent ae) {
                label.setText(String.valueOf(counter));
                bar.setValue(++counter);
                if (counter > 100) {
                    timer.stop();
                }
            }
        });
    
        CountUpProgressBar() {
            super.setLayout(new GridLayout(0, 1));
            bar.setValue(0);
            timer.start();
            this.add(bar);
            this.add(label);
            JOptionPane.showMessageDialog(null, this);
        }
    
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
    
                public void run() {
                    CountUpProgressBar cdpb = new CountUpProgressBar();
                }
            });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking through some code for learning purposes. I'm working through this portion of
While looking through some old code I came across this gem: MyObject o =
So I'm looking through some code, and I see this: class whatever { public:
My code has something like this: HttpFileCollection files Instead of looping through each file
I've recently been looking through my warnings in Eclipse and come across this one:
I'm looking for an answer to this problem: I'm running through a loop testing
Must be a way looping through this code: private void loadSprites() { this.sprites[0] =
Using javascript I'm looping through my H3 elements like this: $('h3').each(function(){ }); I'm then
Can this be done quickly in jQuery before I start looping through them? Or
I have tried looking though several of the already asked question about this topic

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.