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

  • Home
  • SEARCH
  • 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 9149253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:27:07+00:00 2026-06-17T11:27:07+00:00

I want to get the whole output from my while-loop, when the 1-10 button

  • 0

I want to get the whole output from my while-loop, when the “1-10” button is pressed, and not have to click on the “OK” button for every number to show.

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class Testgui1 extends JFrame implements ActionListener 
{
    int i = 1;
    JLabel myLabel = new JLabel();
    JPanel mypanel = new JPanel();
    JButton mybutton = new JButton("1-10");
    Testgui1()
    {
        super("Meny");
        setSize(200,200);//Storlek på frame
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container con = this.getContentPane();
        con.add(mypanel); 
        mybutton.addActionListener(this);
       mypanel.add(myLabel); mypanel.add(mybutton);
        setVisible(true);
    }
    public void actionPerformed(ActionEvent event)
    {  
    // Object source = event.getSource();
    //if (source == mybutton)
    {
            while (i < 11){
                        System.out.print(+i);
       {
            JOptionPane.showMessageDialog(null,i,"1-10",
                   JOptionPane.PLAIN_MESSAGE);
                    setVisible(true);
                     ++i;
       }
    }
        }
            }
    public static void main(String[] args) {new Testgui1();}
}
  • 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-17T11:27:08+00:00Added an answer on June 17, 2026 at 11:27 am

    I think what you want to do is to build up a String (or StringBuilder preferrably) inside your while loop, and then output it once after the loop completes. So something like:

    StringBuilder s = new StringBuilder();
    while(i < 11) {
        s.append(" ").append(i);
        i++;
    }
    System.out.println(s);
    JOptionPane.showMessageDialog(null, s, "1-10", 
                 JOptionPane.PLAIN_MESSAGE);
    

    That should get you closer at least.

    Note that if you want the message dialog to be modal, pass “this” as the first argument (instead of null) to showMessageDialog.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to get the value from an array thats in a while fetchrow..
Basically I want get data I already have accessed from javascript and passing it
My whole purpose of this is to get something looking like this: I want
I want to compile the Rigi source code but I get some error while
I want get as much as possible from Redis + Hiredis + libevent. I'm
What I want: get a xml from the AppData to use What I code
I am getting input from Scanner and system.in and I want to get the
I have a query and a loop written that lists all the rows from
I want to get N random numbers whose sum is a value. For example,
I want get the time used for a case so I can create an

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.