I have a JTextArea that I would like to have updated as strings are appended to it.
whenever this:Code:public void updateMessageCenter(String message){
this.outTextArea.append(message + newline);
}
Is called I would like it to display in the text area.Code:updateMessageCenter("this would be the message");
The append works, but it only displays the result AFTER the program has finished executing.
Thanks
