I have a JPanel in a window and I am putting different components in it as
the user goes through a setup wizard. In theory, I have an array of
components (other JPanels), and I want to step through them, displaying
panel_0, then panel_1....
I have no problem removing panel_0 from the JPanel parent (I've even done a
repaint() right after removing to be sure of this), but no matter what I
do, I can't seem to do an "add(panel_ 1)" to the sampe panel. It's the same
method I'm using to add the first panel, before I show() the window, but
once I remove a component and try to add another in its place, I get a
blank.
Is there a reason I can't add components? Is it because the window is
visible? What do I need to do?
Thanks!
Hal
the user goes through a setup wizard. In theory, I have an array of
components (other JPanels), and I want to step through them, displaying
panel_0, then panel_1....
I have no problem removing panel_0 from the JPanel parent (I've even done a
repaint() right after removing to be sure of this), but no matter what I
do, I can't seem to do an "add(panel_ 1)" to the sampe panel. It's the same
method I'm using to add the first panel, before I show() the window, but
once I remove a component and try to add another in its place, I get a
blank.
Is there a reason I can't add components? Is it because the window is
visible? What do I need to do?
Thanks!
Hal
Comment