Skip to content

Tag: jtextarea

How can I add a scroll bar to a text area?

Please, anyone, tell me how to add the scrollbar to a JTextArea. I tried out many things. but still not able to get it. I copied some codes related to the text area. Answer Oracle has a helpful tutorial, Creating a GUI With Swing. Skip the Netbeans section. As Andrew said, you have to place the JTextArea insi…

How can make a JTextArea?

I am trying to make a textArea for my input, but it broke my code. It does not draw the characters or grid any more, and all I see is a small button in the top right corner. Screenshot of output Here’s my code with the JTextArea: What can I do to make my code work with the JTextArea? I

JScrollPane doesn’t show up in JFrame

there. I’m writing a GUI chat client which sends message to the server and receives echoes from the server. The top half of the client JFrame contains a JTextArea wrapped in a JScrollPane which is placed under the menubar. This JScrollPane is responsible for receiving responses from the server which rec…

Is there anyway to get the size of the text in a JTextArea?

The title pretty much says it all. What I don’t mean is how to get the size of the JTextArea. I need to get the size of the actual text. I am completely open to suggestions though. If you have a wonky workaround that involves using something other than JTextArea but still has a similar effect, I’d…

Java GUI Calculator

My JTextArea does not display and no errors or problems shows up. It’s a Java GUI Calculator. Main class code: Calculator code: Any suggestions on improvements to the code? Answer You’re adding your JTextArea, text, to your screen JPanel, but you’re adding screen to nothing, and so it makes …