1. Problem when adding a new JTextPane to GroupLayout at run time coderanch.comWelcome to the Ranch. Please use code tags when posting codes. You are using a GroupLayout. Have you try using other layout managers to see how it will look? For swing, choosing a proper layout manager is key. I think fiddle around with different layout managers like flow, border, grid etc to see the effect. Also you can have several "panels" ... |
2. Problem in adding new JTextPane at Runtime java-forums.orgHi, I am Creating a Editor Application in Java. Initally this applcation has a JTextPane(name EditorPane) which occupies all of the sapce of JInternalFrame and My maintoolbar also has a button to add the new JTextPane(name headPane) to the JInternalFrame Form at runtime. In the Editor class which extends JInternalFrame class , I am using the following code to add the ... |