Related questions
Java :Add scroll into text area
How can i add the scroll bar to my text area. i have tried with this code but it's not working.
middlePanel=new JPanel();
middlePanel.setBorder(new TitledBorder(new EtchedBorder(), "Display Area"));
// create the middle panel components
display = new JTextArea(16, 58);
…
How to set AUTO-SCROLLING of JTextArea in Java GUI?
I have embedded a JTextArea on a JScrollPane and am using that JTextArea for output.
I want that whenever the ouput goes beyond the size of the JTextArea, the JTextArea scrolls automatically so that user don't have to do manual …
JTable with horizontal scrollbar
Is there any way to enable horizontal scroll-bar whenever necessary?
The situation was as such: I've a JTable, one of the cells, stored a long length of data. Hence, I need to have horizontal scroll-bar.
Anyone has idea on this?