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 7686677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:32:02+00:00 2026-05-31T19:32:02+00:00

I have created jframe in which jpanels are added dynamically what i can’t do

  • 0

I have created jframe in which jpanels are added dynamically
what i can’t do is scroll down to all the panels which are created.
pls suggest me how to use scroll bar/scrollpane to scroll down the multiple panels.

here is my code

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.border.Border;
import sun.swing.FilePane;

public class Test extends JFrame
{
public Test() 
{
 getContentPane().setLayout(new FlowLayout());
 addWindowListener(new java.awt.event.WindowAdapter()
    {
      public void windowClosing(java.awt.event.WindowEvent evt)
      {
       System.exit(0);
      }
    });

    for(double i=10000000;i<90000000;i++)
    {
        if(i%10000000==0)
        {
          getContentPane().add(new z());
          validate();
        }
    }

    setSize(1024,1024);
    setVisible(true);
  }

  public static void main(String args[])
  {
   new Test();
  }
 }

in above code z is class which extends jpanel which have 3 labels and 2 buttons
pls tell me how to scroll down through these panels
or how i can view all the panels?

  • 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-05-31T19:32:03+00:00Added an answer on May 31, 2026 at 7:32 pm

    Recommendations

    • Read the JScrollPane tutorial in the Java Swing tutorials.
    • Create a JPanel that uses a useful layout, say a GridLayout.
    • Create a JScrollPane that holds the above JPanel
    • Add the JScrollPane to the JFrame’s contentPane at the BorderLayout.CENTER position (Don’t make the contentPane use FlowLayout).
    • Add your new JPanels to the container JPanel described on the first line of this recommendation.
    • revalidate() and repaint() the container JPanel whenever components are added or removed.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a JFrame with a canvas in it, like you can see
I have created one GUI in which I have used a JFrame. How should
I have created a simple Java application which has a JFrame and few JButtons.
I created a array of JPanels which contains a common JLabel class gui {
I have a class which extends JFrame and forms the GUI of my program.
I have created a simple JFrame with two labels, two fields and two buttons.
I have a JFrame which holds and JScrollPane. The JScrollPane itself holds a class
I have created a class called SimpleCanvas which extends the JPanel class, and I
I have created an application which requires the reloading of an image several times
One of my classes is returning a JPanel which is added on a JFrame

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.