Building a GUI with one JFrame holding two JPanels.
1) Panel 1 is Start screen and will stay visible until close.
3 Buttons - Start, Settings, Exit
Start: Exits GUI Interface & Opens "Live" Ticker style text display to multiple TV's.
Settings: Need to open 2nd JPanel which will be the Settings Panel with JTabbedPane included.
Exit: Exits Program.
2) Panel 2 Needs to be invisible until Settings JButton selected in Panel 1.
Panel 2 will sit on top of Panel 1 (like a color chooser box) within either the JFrame's surface area or Panel 1's surface area (Whichever is recommended or will work).
Panel 2 will be set to invisible again when the Exit JButton is selected in Panel 2.
I have been looking for past 2 days for answers, CardLayout doesn't seem to fit since I am not replacing the 1st Panel. I have been unable to get the JTabbedPane to work within a JOptionPane or Dialog Box.
Need some help here if you can....