displaying results in text area [NETBEANS java]

Questions about programming languages and debugging
Post Reply
User avatar
l0ngb1t
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 598
Joined: 15 Apr 2009, 16:00
15
Contact:

displaying results in text area [NETBEANS java]

Post by l0ngb1t »

hey,
language: java
platform: netbeans
i am working on a small project that include GUI.
however the tool do 1 repeated task, each time the task is done, it append the result into the textArea, and it goes on until the loop is done
do{
Stuff();
append_the_result();
}while(_somehing)
this code is a function called in the event handler of a button click.
it works fine but my problem is that nothing is displayed until the whole function is done, and not step by step...
anyone know the reason why ?

thanks...
There is an UNEQUAL amount of good and bad in most things, the trick is to work out the ratio and act accordingly. "The Jester"

User avatar
Lundis
Distorter of Reality
Distorter of Reality
Posts: 543
Joined: 22 Aug 2008, 16:00
15
Location: Deadlock of Awesome
Contact:

Re: displaying results in text area [NETBEANS java]

Post by Lundis »

could you show some code?

Post Reply