users
[Top] [All Lists]

Re: [cinjug-users] Swing Pop Up Window

To: "Jackson, Doug" <DOUG.JACKSON@xxxxxxxx>, <users@xxxxxxxxxx>
Subject: Re: [cinjug-users] Swing Pop Up Window
From: "Kevin Finley" <kevin.finley@xxxxxxxxx>
Date: Fri, 23 Apr 2004 13:00:13 -0400
Delivered-to: mailing list users@cinjug.org
Mailing-list: contact users-help@cinjug.org; run by ezmlm
References: <0A5C43B71EC8EE4F8393BCADE546841A021B7FC0@vie-its-exs02.mail.saic.com>
The simplest incarnation is:

JPanel panel = new JPanel();
panel.add(...);
..
panel.add(...);
JFrame frame = new JFrame( "title" );
frame.add( panel );
frame.show();

HTH,
Kevin

----- Original Message ----- 
From: "Jackson, Doug" <DOUG.JACKSON@xxxxxxxx>
To: <users@xxxxxxxxxx>
Sent: Friday, April 23, 2004 12:17 PM
Subject: [cinjug-users] Swing Pop Up Window


> Does anyone know how to make a separate JPanel or Window and call it from
an
> application.
> I need to make a separate pop-up window with info while keeping the
original
> screen it was
> called from the same.  I need to do this in swing.  Can anybody help?
>
> Thanks in advance.
>
> ---------
> You may unsubscribe from this mailing list
> by sending a blank email addressed to:
> users-unsubscribe@xxxxxxxxxx
>
> --
> Find additional help by sending a blank email
> addressed to:
> users-help@xxxxxxxxxx
>


<Prev in Thread] Current Thread [Next in Thread>