I'm using netbeans to write the GUI. I have a menu bar with few menu items and the main window has a text area all over it. when I press the menu item,I cant see it because the text area is on top (the menu item internal frame is behind the text area)how can I make the menu item internal frame to be on the top ?(the text area will be on the background)

thanks

link|improve this question
4  
Please provide a SSCCE – Binyamin Sharet Aug 17 '11 at 10:14
1  
Are you using layouts? Usually, it simplifies the things... – TheCharliemops Aug 17 '11 at 10:15
1  
See also this tutorial. – trashgod Aug 17 '11 at 10:16
3  
are you sure that you didn't mixing AWT Componets with Swing JComponents, then is everyting possible, including your issue java.sun.com/products/jfc/tsc/articles/mixing and java.sun.com/developer/technicalArticles/GUI/mixing_components – mKorbel Aug 17 '11 at 10:22
feedback

2 Answers

I'm not sure what problem you are facing but it seems like you are looking for JLayeredPane

Some useful links:

  1. How to use layered pane
  2. How to use Internal frames
link|improve this answer
feedback

Try to specify a Z-Value index higher for the JMenu , when adding it to its container component.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.