I´d try to add a scrollbar to a pane that is inside a jtabbedPane but nothing works, hope someone can help.
This is what i had try:
        JPanel panel_3 = new JPanel();
        panel_3.setBackground(Color.WHITE);
        JScrollPane scroll = new JScrollPane(panel_3);
        scroll.setPreferredSize(new Dimension(643, 900));
        tabbedPane.add(scroll, "test");
        panel_3.setLayout(null);
 
    