I want to implement a Scrollbar onto my Tab. However nothing is showing and there are no exceptions.
I think I need a:
scrollPane.setViewportView(scrollPanel);
But it didn't work as well.
I am wondering when adding a Jscrollpane onto a JTab how do you set it visible without using an explicit frame. If I use a frame and add it on the frame it creates a new window. However how I got this program the Frame looks built I assume and this complicates everything.
import java.awt.*;
import javax.swing.*;
public class Test extends JFrame {
    private     JTabbedPane tabbedPane;
    private     JPanel      panel; // Page where I want JScrollPane intisialized
    public Test()
    {
        setTitle( "Program" );
        setSize( 400, 200 ); // I want the JScrollPane to extend to 400 vertically
        JPanel topPanel = new JPanel();
        topPanel.setLayout( new BorderLayout() );
        getContentPane().add( topPanel );
        // Create the tab pages
        createPage1();
        tabbedPane = new JTabbedPane();
        tabbedPane.addTab( "Welcome", panel );
        topPanel.add( tabbedPane, BorderLayout.CENTER );    
    }
    public void createPage1()
    {
        panel = new JPanel();
        panel.setLayout( null ); // sets layout to null
////////////////////////
JPanel scrollPanel = new JPanel();
scrollPanel.setLayout(null);
scrollPanel.setPreferredSize(new Dimension(400,400));
///////////////////////
        panel.add(scrollPanel);
        scrollPanel.setVisible (true);
    }
    public static void main( String args[] )
    {
        // Create an instance of the test application
        Test mainFrame  = new Test();
        mainFrame.setVisible( true );
    }
}
If you have any questions don't hesitate to ask.
 
     
    