Posted By:
Alan_Cox
Posted On:
Wednesday, July 11, 2001 07:09 PM
I am writing an application that sends out emails (to a group of people that are on a survey panel). After each email has been sent, I would like to update a JTextArea with the append() method with something like this:
myemail@someplace.com ... Success
Right now, nothing new is displayed in the text area until all the emails are sent out. Then all at once, 900 some lines pop up displaying either success or failure.
I'd like each email to display individually (even if that slows the execution of the app), so that the user can see the progress.
Thanks