how to create internal frame in netbeans platform?
Posted
by joseph
on Stack Overflow
See other posts from Stack Overflow
or by joseph
Published on 2010-03-13T21:56:42Z
Indexed on
2010/03/13
22:05 UTC
Read the original article
Hit count: 388
I created class NewProject extends JInternalFrame. Then I create New...Action named "NEW", localised in File menu. I put code NewProject p = new NewProject(); p.setVisible(true);
to the ActionPerformed method of the action.
But when I run the module and click "NEW" in file menu, nothing appears. Where can be problem?
© Stack Overflow or respective owner