1. Java JFrame: howto parse recursively through componets (i.e. if using JScrollPane) stackoverflow.comI'm using TableLayout for my swing GUI. Initially only some basic labels, buttons and text fields where required which I could later on access by:
|
2. Accessing a JTextArea in a JScrollPane stackoverflow.comI have a JTextArea in (multiple) JScrollPane in a JTabbedPane. I need to access the JTextArea. If I didn't have the JScrollPane, I could do:
How would I get ... |
3. JTextArea in JScrollPane, view coordinate translation stackoverflow.comI'm trying to translate between view and viewport coordinates.
But the JViewport/JScrollpane doesn't seem to work as documented. |
4. Combined JTextAreas stackoverflow.combasically this is what i want to do: I have two seperate JTextAreas in two seperate JScrollPanes and i want to Combine them, so when the text is to long for the ... |
5. JScrollPane with multiple JTextAreas stackoverflow.comI am in need of an easy way to implement a JScrollPane where i can add JTextAreas. This should work like a comment system as you see it on youtube and ... |
6. Lock JScrollPane to bottom of JTextArea (java swing) stackoverflow.comI currently have a setup where I have a |
7. JTextArea, JScrollPane question forums.netbeans.orgis there a way ? to limit how "big" a JTextArea will become ? my experiments suggest there is no enforced limit to the number of bytes of data stored by ... |
8. JScrollPane & JTextArea in Javabean coderanch.com |
9. JTextarea and JScrollPane coderanch.com |
10. JTextArea on JScrollPane coderanch.com |
11. Need Volunteer to help with JTextArea,JScrollPane problem... coderanch.comI have a Swing project I'm working on and I've gotten to a point where I can't get the GUI to do what I want it to do. Basically here's what I want to do. Suppose I have a list of 60,000 objects. I have a JTextArea inside of a JScrollPane and I start off by displaying 3000 of the objects ... |
12. problem adding JScrollPane to JTextArea coderanch.com |
13. JInternalFrame JScrollPane JTextarea coderanch.comThanks Shyam. Thats already considered for the console JInternalFrame in which all public messages appear. But the thing is when new internal frames are open. I can identify them with no problem, but i can not identified its JScrollPane/JTextArea inside the new internal frames. Here is the code: import javax.swing.*; import javax.swing.event.*; import java.awt.*; import java.awt.event.*; import java.beans.*; class VentanaPrivado { ... |
14. JScrollPane does not work with JTextArea coderanch.comyou have a number of things wrong frm.setLayout(null); means you are responsible for the sizing/location, and the scrollpane has none frm.getContentPane().add(scroll); frm.getContentPane().add(area); 'area' cannot be in 2 places at the same time 1) added to the scrollpane 2) added to the contentPane get rid of the null layout, just get the scrollpane working, then worry about the look of it later ... |
15. JTextArea with JScrollPane java-forums.orgThe code adds both plainTextArea and plainScroll to the frame. It should only add the plainScroll; the latter allocates screen space for te plainTextArea within the plainScroll screen area. The code calls setBounds() outside a layout manager. That this is wrong may be true or may be my own superstition. It definitely would not be wrong to call setPreferredSize() instead. As ... |
16. Swing JTextArea + JScrollPane question? java-forums.orgHi Im develop some program and I have a JTextArea in JScrollPane and its works fine but I want to give the all thing the component (JTextArea + JScrollPane) a border but I can only give the JTextArea or the JScrollPane I didnt put them in a panel and now it will be complicated to add a panel so I ask ... |
17. How to use JTextArea with JScrollPane? java-forums.orgHi all, I had a play with this but couldn't get it to work so I am assuming its nothing obvious. How is one supposed to use the JScrollPane with JTextArea so that the text area, if displaying only a portion of its contents, is still accessible by the scroll bar. In other words how to make the scroll bar work ... |
18. Get JTextArea inside a JScrollPane forums.oracle.com |
19. Install Application - TextArea inside JScrollPane forums.oracle.comrpk5000 wrote: I made images and have them display as image icons through jlabels for the buttons and background. The labels have classes applying various mouselisteners (Mousepressed, MouseEntered, MouseExited, etc) changing the images and moving from screen to screen. I have my layout set to null, not for any particular reason, but because I have no formal education in layout managers. ... |
20. Get JTextArea instance back after adding it to JScrollPane forums.oracle.com |
21. Question about JTextArea and JScrollPane forums.oracle.com |
22. Setting JTextArea text within a JScrollPane forums.oracle.com |