| Author |
JTextArea not appearing in JDialog
|
Scott Krasnigor
Greenhorn
Joined: Oct 10, 2005
Posts: 9
|
|
I have a simple JDialog that gets envoked on a certain event. It contains a JScrollArea with a JTextArea attached. When my Dialog is displayed, the text area is not visible. Any assistance would be appreciated.the code is below:
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
Remove this line: This causes the scroll pane's viewport to not be shown unless you specify the bounds. Please note that it's an overall bad idea to use null as layout managers; your code just shows one of the reasons. Also, if I were you I'd call setResizable(false) on your dialog if you're keeping this setup, because the controls stay in their old place if you resize the dialog.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Scott Krasnigor
Greenhorn
Joined: Oct 10, 2005
Posts: 9
|
|
|
Thanks for your prompt response. Works just fine.
|
 |
 |
|
|
subject: JTextArea not appearing in JDialog
|
|
|