hai i have a web page with swing applet in it the applet has a JTextArea which has to display the text. Even if the size of the text is more than the size of text area the scroll bars are not coming up should i set any paremeters to get the scroll bars please help me anticipating an early reply bye
<BR>
Rob Ross
Bartender
Joined: Jan 07, 2002
Posts: 2205
posted
0
You need to add a JScrollPane to your content pane, and add the JTextArea to that, so it is nested within the JScrollPane. Don't add the JTextArea directly to the applet's content pane. Look up the JTextArea and JScrollPane javadoc, and follow the tutorials there! Good luck.