Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: DesktopPane

  1. #1
    Junior Member
    Join Date
    May 2010
    Posts
    6
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Unhappy DesktopPane

    when working with NetBeans, what is the purpose of adding a DesktopPane and then adding the InternalFrame rather than adding the InternalFrame at once?


  2. #2
    Member Darryl.Burke's Avatar
    Join Date
    Mar 2010
    Location
    Madgaon, Goa, India
    Posts
    494
    Thanks
    8
    Thanked 48 Times in 46 Posts

    Default Re: DesktopPane

    Nothing to do with NetBeans. Read the API for JDesktopPane and JInternalFrame and follow the link to the Swing tutorials on How to Use Internal Frames.

    Your question is a classic example of using the NetBeans (or any other) visual designer without first learning how to correctly use Swing components and / or layouts. I strongly recommend you put aside the designer and learn first to hand-code your GUIs. Go back to the designer when you're capable of understanding the code it spews out.

    db

  3. The Following User Says Thank You to Darryl.Burke For This Useful Post:

    prasansani (June 12th, 2010)