i am constructing an application where i have a scrollpane added to a layered pane
and the layered pane added to a JInternalFrame,
the scrollpane content is a custom JComponent
the problem is nothing apearing in my internal frame ??!?!
Thanks for any posts
regards,
AB

link|improve this question

59% accept rate
1  
could we see some code? – Dhruv Gairola Dec 27 '10 at 1:11
feedback

1 Answer

I added a scrollpane to a layered pane and the layered pane to a JInternalFrame. I also added a JTextArea to the JScrollPane. Netbeans calls initComponents() in the constructor by default. Here is the code:

public class NewJInternalFrame extends javax.swing.JInternalFrame {

    public NewJInternalFrame() {
        initComponents();
    }


    private void initComponents() {

    jInternalFrame1 = new javax.swing.JInternalFrame();
    jScrollPane1 = new javax.swing.JScrollPane();
    jLayeredPane1 = new javax.swing.JLayeredPane();
    jScrollPane2 = new javax.swing.JScrollPane();
    jTextArea1 = new javax.swing.JTextArea();

    setClosable(true);
    setIconifiable(true);
    setMaximizable(true);
    setResizable(true);
    setTitle("foo");

    jInternalFrame1.setVisible(true);

    jTextArea1.setColumns(20);
    jTextArea1.setRows(5);
    jScrollPane2.setViewportView(jTextArea1);

    jScrollPane2.setBounds(30, 0, 220, 120);
    jLayeredPane1.add(jScrollPane2, javax.swing.JLayeredPane.DEFAULT_LAYER);

    jScrollPane1.setViewportView(jLayeredPane1);

    jInternalFrame1.getContentPane().add(jScrollPane1, java.awt.BorderLayout.CENTER);

    getContentPane().add(jInternalFrame1, java.awt.BorderLayout.CENTER);

    pack();
}

// Variables declaration - do not modify
private javax.swing.JInternalFrame jInternalFrame1;
private javax.swing.JLayeredPane jLayeredPane1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JTextArea jTextArea1;
// End of variables declaration
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.