| Author |
JPanel Problem with JInternalFrame ?
|
Jan Michael Soan
Ranch Hand
Joined: Feb 08, 2003
Posts: 36
|
|
Hello Everyone; I have problem with viewing a JPanel with a JInternalFrame, my intention is to click a menuitem which is named item10, then view a JPanel object which should be displayed in a JInternalFrame but after trying the codes below I recieve a null pointer execption. x's : I declared : static Login pass; Problem Codes : item10.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent h) { pass = new Login(); JInternalFrame f1 = new JInternalFrame("Login . . .", true,true,true,true); f1.add(pass); x1.add(f1); } }); Hope Someone would reply, thanks !
|
 |
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
|
|
|
Please do not cross post. Continue the conversation here.
|
"JavaRanch, where the deer and the Certified play" - David O'Meara
|
 |
 |
|
|
subject: JPanel Problem with JInternalFrame ?
|
|
|