I am using Java Swing. I am adding internal frames with the help of menus in layered pane.
Whenever a new layer (another new internal frame) is added in it, it goes to the back of all frames. Can you please tell me how to bring the newly added jInternalFrame to top of all exsisting internal frames on a jLayredPane.
Thanks!
How's this?
myLayeredPane.moveToFront(newlyAddedInternalFrame);