Results 1 to 3 of 3
Thread: JFrame and JPanel -Error
- 08-25-2009, 09:04 AM #1
Member
- Join Date
- Aug 2009
- Posts
- 21
- Rep Power
- 0
JFrame and JPanel -Error
I have Array of JFrame and I have Jpanel
i am using netbeans IDE to work.
my code is
i get the Error Message.so i run in the Debug mode.Java Code:JFrame frame[]=new JFrame[10]; Jpanel panel; for(int i=0;i<10;i++) { panel==new JPanel(); panel.setvisible(true); frame[i].setContentpane().add(panel); frame[i].pack(); frame[i].setvisible(true); }
i found the errror int this line
frame[i].setContentpane().add(panel);
was there any thing wrong in my code
need immediately.:) javadeveloper
- 08-25-2009, 09:19 AM #2
Senior Member
- Join Date
- Aug 2009
- Posts
- 2,388
- Rep Power
- 6
What are you trying to achieve with that code?
Open the API specs for the setContentpane and see what it does.
-
What error message?i get the Error Message.so i run in the Debug mode.
I see many typos and basic mistakes in your code. For instance:
Please post a small bit of compilable code that demonstrates the error and please describe in greater detail just what the error is.Java Code:Jpanel panel; // it's JPanel not Jpanel for(int i=0;i<10;i++) { panel==new JPanel(); // use one = here to assign, not two == panel.setvisible(true); // it's setVisible not setvisible frame[i].setContentpane().add(panel); // you either add to the content pane or set a content pane you don't do both
From the code posted I'd suggest that you go through the Sun Swing tutorial before trying to go further with Swing.
Similar Threads
-
How to add JFrame inside JPanel
By niteshwar.bhardwaj in forum Java 2DReplies: 8Last Post: 12-13-2009, 08:41 PM -
JFrame and two JPanel Classes
By YellowPainting in forum AWT / SwingReplies: 9Last Post: 08-25-2009, 12:49 PM -
Multiple Panels in JFrame or JPanel
By DavidG24 in forum AWT / SwingReplies: 5Last Post: 05-16-2009, 12:47 PM -
problems with JPanel and JFrame
By v1nsai in forum New To JavaReplies: 13Last Post: 04-08-2009, 07:49 PM -
scroll a Jpanel in a JFrame
By nidhirastogi in forum SWT / JFaceReplies: 1Last Post: 09-07-2008, 03:42 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks