What I want is to make a new JFrame, keeping my current JFrame visible, but not create a new window/program. I can't explain it well, so here is a picture of what I mean:

http://screensnapr.com/e/mkCMlm.png

Sorry if this is confusing in any way. Any help is appreciated.

link|improve this question

there is nothing in the snap except for a part of windows taskbar – Sunil Kumar B M Feb 5 at 7:57
@SunilKumarBM I know, that is what I was showing. – Stripies Feb 5 at 8:00
if you are trying to achieve the grouping, then you can't as it is an OS controlled thing, which groups same windows when the taskbar gets full. – Codemwnci Feb 5 at 8:04
Agree with AKJ, if you want to create stacked windows, do it on your own PC. On my PC, I expect each app. to have a single window unless I explicitly open multiple instances. – Andrew Thompson Feb 5 at 8:16
feedback

2 Answers

up vote 4 down vote accepted

You can try http://docs.oracle.com/javase/tutorial/uiswing/components/internalframe.html

Also you can try to use a dialog rather than frame for the new window.

link|improve this answer
feedback

If I understood correctly you want JInternalFrame which are a special component in swing that live inside a Container named Desktop. So if you want to have a behaviour like this:

enter image description here

You definitely need to have inside your JFrame a container named JDesktopPane, then you can add JInternalFrame inside this container like this:

 MyInternalFrame frame = new MyInternalFrame();
    frame.setVisible(true);
    desktop.add(frame);
    try {
        frame.setSelected(true);
    } catch (java.beans.PropertyVetoException e) {ex.printStackTrace();}

For more information you can see official oracle documentation or Java2SE code samples

link|improve this answer
ohh yeah sorry my bad... – Necronet Feb 5 at 11:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.