I have a "MainFrame" which extends a JFrame and in there I have a variety of diferent components. Some of which is a Menu Bar with three Menu Items. I have an ActionEvent on clicking the 'Config' menu item.
When I click the Config menu item, I run the following code:
private void menuConfigActionPerformed(java.awt.event.ActionEvent evt) { ConfigFrame configPopUp = new ConfigFrame(); configPopUp.setVisible(true); }
The ConfigFrame extends JInternalFrame.
All I want to do is show this ConfigFrame once I click the Config menu item. For some reason, the ConfigFrame doesn't ever show?
Please can someone help me where to look?
Thanks