| Author |
Writing to a JTextArea
|
john omeara
Greenhorn
Joined: Nov 12, 2003
Posts: 15
|
|
Hello i am stuck on a simple problem and was wondering if somebody may know the answer. I have created a JTextarea and want to write some statistics to it. These will change however very regularly and i was wondering how to clear the JTextarea and write the new statistics to it as opposed to appending to the previous ones. Thanks for your time john
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8265
|
|
tArea.setText(""); tArea.append(stats);
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
 |
|
|
subject: Writing to a JTextArea
|
|
|