Results 1 to 2 of 2

Thread: subwindow in FrameView window

  1. #1

    Thread Starter
    Hyperactive Member BramVandenbon's Avatar
    Join Date
    Jan 2002
    Location
    Belgium
    Posts
    502

    subwindow in FrameView window

    Dear Java developers,

    Does somebody know how to add subwindows (JFrame's) to a FrameView class?

    FrameView is a netbeans thingy, which I usually do not even try to use.
    But I would like to give it a shot this time.

    So basicly what I am looking for is something like ...

    FrameView myFrameview = ...;
    JFrame myJFrame = ...;
    myFrameview.showInside(myJFrame);

    So when I maximize the JFrame it should maximize inside the FrameView window. I believe they call this concept MDI (Multiple Document Interface).

    Thanks in advance
    ____________________________________________

    Please rate my messages. Thank you!
    ____________________________________________
    Bram Vandenbon
    http://www.bramvandenbon.com

  2. #2
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: subwindow in FrameView window

    what's a FrameView??
    The only way I know to make an MDI application is using the JDesktopPane as an MDI with JInternalFrame(s) for children.. So the code must look something like
    Code:
    jDesktopPane.add(jInternalFrame, javax.swing.JLayeredPane.DEFAULT_LAYER);
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width