when working with NetBeans, what is the purpose of adding a DesktopPane and then adding the InternalFrame rather than adding the InternalFrame at once?
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.
when working with NetBeans, what is the purpose of adding a DesktopPane and then adding the InternalFrame rather than adding the InternalFrame at once?
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
prasansani (June 12th, 2010)