Hi,
I am trying to use swing worker to increase the responsiveness of the
app.
On the main page when the user clicks on a tree node I open a new
frame.
The processing time of creating that new frame is quite intermingled so
it is easiest if I do this:
on select
start swingworker
open form
end swingworker
done
It does work after a fashion - the frame opens fine, the tree is
responsive. But the new frame is now sitting 'behind' the initial
frame. It should be at the front but something is pushing it behind.
Anyone experienced this or can guess?
thanks
Timasmith - 15 Nov 2006 13:43 GMT
> Hi,
>
[quoted text clipped - 20 lines]
>
> thanks
never mind my SwingWorker had a requestFocus() that was causing it.