Panel « JTextArea « Java Swing Q&A





1. loading text area into a panel    coderanch.com

2. adding texts to show multiple texts in one JTextArea panel    java-forums.org

adding texts to show multiple texts in one JTextArea panel I'm trying to write a banking system for an assignment. and I have a problem to show all transaction result. after I finish transactions, click the radiobutton "all transaction" then It supposed to show mutiple results on one panel. But It only shows last trasaction. I have no idea ...

3. Having problems with placing a JTextarea on my panel ...    forums.oracle.com

It's there; it's just very small. Consider either giving it some rows or column int values or a preferred size, or putting it in a JScrollPane with a preferredSize set. another thought is to use a BorderLayout for the whole thing, and place the JScrollPane/JTextArea BorderLayout.CENTER, put the JTextField and JLabels in a JPanel using GridBag and placing this into the ...