> how do you dynamically get rid of text in a TextArea?
>
[quoted text clipped - 5 lines]
>
> Frances
RTFM. The AWT TextArea and Swing JTextArea both support a setText()
call to do what you want.

Signature
Steve W. Jackson
Montgomery, Alabama
> how do you dynamically get rid of text in a TextArea?
>
[quoted text clipped - 5 lines]
>
> Frances
There is a method doing exactly what you want. Learn to read the API spec.
Look through
http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextArea.html#method_summary
and don't forget the inherited methods (of JTextComponent) just below.

Signature
"TFritsch$t-online:de".replace(':','.').replace('$','@')
Frances - 26 Aug 2005 20:50 GMT
>>how do you dynamically get rid of text in a TextArea?
>>
[quoted text clipped - 10 lines]
> http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextArea.html#method_summary
> and don't forget the inherited methods (of JTextComponent) just below.
thank you very much, I HAD looked in javadocs.. didn't know could do
setText("") and it would get rid of what is already there... thank you..