Ok... I must be loosing it... i was testing all of this with the wrong
member function =|
--jason
On 10-Oct-98 Jason Dillon wrote:
> Hey, this really isn't a Linux related question, but I am going nutz trying
> to
> get newly added JInternalFrames to move to the front of a JDesktopPane (at
> the
> DEFAULT_LAYER) and receive focus.
>
> I have tried
>
> _desktop.add (frame);
> _desktop.moveToFront (frame);
>
> &
>
> _desktop.add (frame);
> frame.moveToFront ();
>
> ... I could go on and on, but the end result is that the new frame always
> ends
> up behind every thing else. I can't seem to find the right combination of
> methods to achieve the proper result... and I was hoping (desperately... ok
> well
> not really so desperately) that one of you might know the trick.
>
> --jason